Example
#{example}"); ipb.editor_values.get('templates')['togglesource'] = new Template(""); ipb.editor_values.get('templates')['toolbar'] = new Template(""); ipb.editor_values.get('templates')['button'] = new Template("
Emoticons
"); // Add smilies into the mix ipb.editor_values.set( 'show_emoticon_link', false ); ipb.editor_values.set( 'bbcodes', $H({"snapback":{"id":"1","title":"Post Snap Back","desc":"This tag displays a little linked image which links back to a post - used when quoting posts from the board. Opens in same window by default.","tag":"snapback","useoption":"0","example":"[snapback]100[/snapback]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"topic":{"id":"5","title":"Topic Link","desc":"This tag provides an easy way to link to a topic","tag":"topic","useoption":"1","example":"[topic=1]Click me![/topic]","switch_option":"0","menu_option_text":"Enter the topic ID","menu_content_text":"Enter the title for this link","single_tag":"0","optional_option":"0","image":""},"post":{"id":"6","title":"Post Link","desc":"This tag provides an easy way to link to a post.","tag":"post","useoption":"1","example":"[post=1]Click me![/post]","switch_option":"0","menu_option_text":"Enter the Post ID","menu_content_text":"Enter the title for this link","single_tag":"0","optional_option":"0","image":""},"spoiler":{"id":"7","title":"Spoiler","desc":"Spoiler tag","tag":"spoiler","useoption":"0","example":"[spoiler]Some hidden text[/spoiler]","switch_option":"0","menu_option_text":"","menu_content_text":"Enter the text to be masked","single_tag":"0","optional_option":"0","image":""},"acronym":{"id":"8","title":"Acronym","desc":"Allows you to make an acronym that will display a description when moused over","tag":"acronym","useoption":"1","example":"[acronym='Laugh Out Loud']lol[/acronym]","switch_option":"0","menu_option_text":"Enter the description for this acronym (EG: Laugh Out Loud)","menu_content_text":"Enter the acronym (EG: lol)","single_tag":"0","optional_option":"0","image":""},"hr":{"id":"12","title":"Horizontal Rule","desc":"Adds a horizontal rule to separate text","tag":"hr","useoption":"0","example":"[hr]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"1","optional_option":"0","image":""},"php":{"id":"14","title":"PHP Code","desc":"Allows you to enter PHP code into a formatted/highlighted syntax box","tag":"php","useoption":"0","example":"[php]$variable = true;\n\nprint_r($variable);[/php]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"html":{"id":"15","title":"HTML Code","desc":"Allows you to enter formatted/syntax-highlighted HTML code","tag":"html","useoption":"0","example":"[html]\n \n[/html]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"sql":{"id":"16","title":"SQL Code","desc":"Allows you to enter formatted/syntax-highlighted SQL code","tag":"sql","useoption":"0","example":"[sql]SELECT p.*, t.* FROM posts p LEFT JOIN topics t ON t.tid=p.topic_id WHERE t.tid=7[/sql]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"xml":{"id":"17","title":"XML Code","desc":"Allows you to enter formatted/syntax-highlighted XML code","tag":"xml","useoption":"0","example":"[xml]4 Replies - 52 Views - Last Post: Today, 05:28 PM
#1
Reputation: 0
- Posts: 2
- Joined: Today, 03:36 AM
Posted Today, 03:41 AM
im trying to make the light auto changing with implementing runnable but like the title said runtime error cause no suitable constructor found for thread any suggestion for thisimport java.awt.*; import javax.swing.*; public class lamp extends JFrame implements Runnable { Signal green = new Signal(Color.green); Signal yellow = new Signal(Color.yellow); Signal red = new Signal(Color.red); public void run() { boolean nyala = true; while(nyala) { try { if (nyala) { red.turnOn(false); yellow.turnOn(false); green.turnOn(true); } else { red.turnOn(true); yellow.turnOn(false); green.turnOn(false); } } catch (Exception e) { } nyala = !nyala; } } public lamp(){ super("Traffic Light"); getContentPane().setLayout(new GridLayout(2,2,25,25)); green.turnOn(false); yellow.turnOn(false); red.turnOn(true); JPanel p1 = new JPanel(new GridLayout(3,1)); p1.add(red); p1.add(yellow); p1.add(green); getContentPane().add(p1); pack(); new Thread(red).start(); } public static void main(String[] args){ lamp tl = new lamp(); tl.setVisible(true); } } class Signal extends JPanel{ Color on; int radius = 40; int border = 10; boolean change; Signal(Color color){ on = color; change = true; } public void turnOn(boolean a){ change = a; repaint(); } public Dimension getPreferredSize(){ int size = (radius+border)*2; return new Dimension( size, size ); } public void paintComponent(Graphics g){ g.setColor( Color.black ); g.fillRect(0,0,getWidth(),getHeight()); if (change){ g.setColor( on ); } else { g.setColor( on.darker().darker().darker() ); } g.fillOval( border,border,2*radius,2*radius ); } }
Is This A Good Question/Topic? 0
Replies To: no suitable constructor for thread..
#2
Reputation: 1970
- Posts: 4,804
- Joined: 10-September 10
Re: no suitable constructor for thread..
Posted Today, 03:59 AM
Like it says, there is no Thread constructorThread( Signal )
If you need the thread to be specific to a Signal instance, you could identify each instance by a name. Thread does have a constructor that allows naming the thread with a String:
Thread( String )
You can discover (and learn) these bits of wisdom on your own by referring to the Java API or documentation: The Thread API.
#3
Reputation: 0
- Posts: 2
- Joined: Today, 03:36 AM
Re: no suitable constructor for thread..
Posted Today, 04:13 AM
already read that topics before but im still not gettin any point of it.. can you point me what need to be change there on my code
#4
Reputation: 1970
- Posts: 4,804
- Joined: 10-September 10
Re: no suitable constructor for thread..
Posted Today, 04:25 AM
First, point to the Thread constructor in your code - give me the line number. Then tell me how you think you might change it to make the error go away.
#5
Reputation: 8007
- Posts: 31,096
- Joined: 06-March 08
Re: no suitable constructor for thread..
Posted Today, 05:28 PM
Mixing Thread and Swing is not a good idea.
You need Swing Timer, not Thread, to implement what you want
Page 1 of 1
Source: http://www.dreamincode.net/forums/topic/321027-no-suitable-constructor-for-thread/
chimpanzee chimpanzee the lucky one pittsburgh pirates mariners mets shades of grey
কোন মন্তব্য নেই:
একটি মন্তব্য পোস্ট করুন