<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>applet color implementsion | Student Projects</title>
	<atom:link href="https://studentprojects.in/tag/applet-color-implementsion/feed/" rel="self" type="application/rss+xml" />
	<link>https://studentprojects.in</link>
	<description>Microcontroller projects, Circuit Diagrams, Project Ideas</description>
	<lastBuildDate>Sun, 04 Apr 2010 17:02:43 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.1.7</generator>
	<item>
		<title>Java program to implement a Color Section from a given set of Color.</title>
		<link>https://studentprojects.in/software-development/java/java-programs/applet/java-program-to-implement-a-color-section-from-a-given-set-of-color/</link>
					<comments>https://studentprojects.in/software-development/java/java-programs/applet/java-program-to-implement-a-color-section-from-a-given-set-of-color/#comments</comments>
		
		<dc:creator><![CDATA[Editorial Team]]></dc:creator>
		<pubDate>Sun, 04 Apr 2010 17:02:43 +0000</pubDate>
				<category><![CDATA[Applet programs]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[java applet]]></category>
		<category><![CDATA[applet color implementsion]]></category>
		<guid isPermaLink="false">http://studentprojects.in/?p=1153</guid>

					<description><![CDATA[<p>To implement a Color Section from a given set of Color. import java.awt*; import java.awt.event.*; import java.applet.*; public class fillcolor extends Applet implement Item Listener { checkbox red,yellow,black,blue.orange; CheckboxGroup cbg; String msg; String s1="red"; String s2="yellow"; String s3="black"; String s4="orange"; public void init() { cbg = new CheckboxGroup(); red = new Chechbox("red",cbg,true); yellow= new Checkbox("yellow",cbg,false);</p>
<p>The post <a href="https://studentprojects.in/software-development/java/java-programs/applet/java-program-to-implement-a-color-section-from-a-given-set-of-color/">Java program to implement a Color Section from a given set of Color.</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>To implement a Color Section from a given set of Color.</p>
<pre lang="java">
import java.awt*;
import java.awt.event.*;
import java.applet.*;

public class fillcolor extends Applet implement Item Listener
{
	checkbox red,yellow,black,blue.orange;
	CheckboxGroup cbg;
	String msg;
	String s1="red";
	String s2="yellow";
	String s3="black";
	String s4="orange";
	public void init()
	{
		cbg = new CheckboxGroup();
		red = new Chechbox("red",cbg,true);
		yellow= new Checkbox("yellow",cbg,false);
		black = new checkbox("black",cbg,false);
		blue = new Checkbox("blue",cbg,false);
		orange = new checkbox("orange".cbg.false);
		add(red);
		add(yellow);
		add(black);
		add(blue);
		add(orange);
		red.addItemListener(this);
		yellow.addItemListener(this);
		black.addItemListener(this);
		blue.addItemListener(this);
		orange.addItemListener(this);
	}
	publice void itemStartechanged(ItemEvent ie)
	{
		repaint();
	}
	publice void paint (Graphics g)
	{
		msg = cbg.getSelectedCheckbox().getLabel();
		if(msg.compareTo(s1)==0)
		{	
		    setBackground(Color.red);
		}
		else if (msg.compareTo(s2)==0)
		{
		    setBackground(Color.yellow);
		}
		else if(msg.compare To(s3)==0)
		{
		    setBackground(color.black);
		}
		else if (msg.compareTo(s4)==o)
		{
		    setBackground(Color.blue);
		}
		else
		{
		    set Background(Color.orange);
		}
	}
}
</pre><p>The post <a href="https://studentprojects.in/software-development/java/java-programs/applet/java-program-to-implement-a-color-section-from-a-given-set-of-color/">Java program to implement a Color Section from a given set of Color.</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://studentprojects.in/software-development/java/java-programs/applet/java-program-to-implement-a-color-section-from-a-given-set-of-color/feed/</wfw:commentRss>
			<slash:comments>7</slash:comments>
		
		
			</item>
	</channel>
</rss>
