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]5 Replies - 46 Views - Last Post: Today, 02:10 PM
#1
Reputation: 2
- Posts: 171
- Joined: 11-July 12
Posted Today, 11:22 AM
I want to make something like thispublic static void main(String[] args){ doSomething(); // Wait doSomethingElse(); }
How to stop code? I was thinking about Thread, and sleep method, but then i thought, that i don't know specific sleeping time. Situation is like this:
main class contains jframe window.
I want to add one class which extends JPanel. There ActionListeners would follow user, until he does something, and then I want to came back to the main method and call second method.
Is this even possible? And if yes, then how can I make this?
Is This A Good Question/Topic? 0
Replies To: How to stop code?
#2
Reputation: 7858
- Posts: 30,708
- Joined: 06-March 08
Re: How to stop code?
Posted Today, 11:30 AM
Not really, this happens in two different thread.Your main() is actually finished when the GUI is displayed... this is the nature of Java GUI.
This is not a noce solution but you can always start a thread that does something like
class MyTread extends Thread { private boolean flag = true; public void run() { while(flag} { thread sleep 1 second } ... do what you have to do
so it is the actionPerformed() job to call a setter in MyThread to set the flag to false
#3
Reputation: 2
- Posts: 171
- Joined: 11-July 12
Re: How to stop code?
Posted Today, 11:49 AM
pbl, on 15 April 2013 - 11:30 AM, said:
Not really, this happens in two different thread.Your main() is actually finished when the GUI is displayed... this is the nature of Java GUI.
This is not a noce solution but you can always start a thread that does something like
class MyTread extends Thread { private boolean flag = true; public void run() { while(flag} { thread sleep 1 second } ... do what you have to do
so it is the actionPerformed() job to call a setter in MyThread to set the flag to false
Looks good, but how to call setter method of the main class? Do I need to send whole main object to the JPanel class with ActionListener?
This post has been edited by novakasss: Today, 11:51 AM
#4
Reputation: 2033
- Posts: 8,488
- Joined: 20-September 08
Re: How to stop code?
Posted Today, 01:20 PM
Quote
I want to came back to the main method and call second method.
Is this even possible?
#5
Reputation: 949
- Posts: 2,112
- Joined: 05-April 11
Re: How to stop code?
Posted Today, 02:02 PM
What is it that you are trying to accomplish? Is it some sort of dialog result you are looking for?
#6
Reputation: 114
- Posts: 359
- Joined: 14-November 12
Re: How to stop code?
Posted Today, 02:10 PM
pbl, on 15 April 2013 - 07:30 PM, said:
Not really, this happens in two different thread.Your main() is actually finished when the GUI is displayed... this is the nature of Java GUI.
This is not a noce solution but you can always start a thread that does something like
class MyTread extends Thread { private boolean flag = true; public void run() { while(flag} { thread sleep 1 second } ... do what you have to do
so it is the actionPerformed() job to call a setter in MyThread to set the flag to false
Did I just see pbl call Thread.sleep() without a try/catch clause or a declaration of throws InterruptedException??
Surely I was mistaken!
Page 1 of 1
Source: http://www.dreamincode.net/forums/topic/318591-how-to-stop-code/
Erin Go Bragh St Patrick lisa vanderpump Dancing With the Stars 2013 NIT Bracket March Madness 2013 bracket March Madness 2013
No comments:
Post a Comment