Search Results
OK to copy?
Examples 1 through 10 of
18 (0.0010 seconds)
jgoodies_validation
Class:
com.jgoodies.validation.tutorial.performance.Worker
©,
Rating:
0% of 0,
C1
jgoodies_validation Class: com.jgoodies.validation.tutorial.performance.Worker ©, Rating: 0% of 0, C1
Class: org.apache.batik.swing.svg.SVGDocumentLoader ©, Rating: 0% of 0, C1
Class: org.apache.batik.swing.svg.GVTTreeBuilder ©, Rating: 0% of 0, C1
Class: org.apache.batik.swing.svg.SVGLoadEventDispatcher ©, Rating: 0% of 0, C1
Class: org.apache.batik.swing.gvt.GVTTreeRenderer ©, Rating: 0% of 0, C1
Class: org.apache.axis.components.threadpool.ThreadPool ©, Rating: 100% of 1, C2
Class: org.apache.batik.apps.svgbrowser.StatusBar ©, Rating: 0% of 0, C1
Class: org.apache.batik.apps.svgbrowser.StatusBar ©, Rating: 0% of 0, C1
Class: org.apache.axis.wsdl.gen.Parser ©, Rating: 0% of 0, C2
126 Thread t = threadVar.get();
127 if (t != null) {
128 t.interrupt();
129 }
130 threadVar.clear();
jgoodies_validation Class: com.jgoodies.validation.tutorial.performance.Worker ©, Rating: 0% of 0, C1
100 t.join();
101 } catch (InterruptedException e) {
102 Thread.currentThread().interrupt(); // propagate
103 return null;
104 }
Class: org.apache.batik.swing.svg.SVGDocumentLoader ©, Rating: 0% of 0, C1
148
149 public void interrupt() {
150 super.interrupt();
151 synchronized (this) {
152 beenInterrupted = true;
Class: org.apache.batik.swing.svg.GVTTreeBuilder ©, Rating: 0% of 0, C1
166
167 public void interrupt() {
168 super.interrupt();
169 synchronized (this) {
170 beenInterrupted = true;
Class: org.apache.batik.swing.svg.SVGLoadEventDispatcher ©, Rating: 0% of 0, C1
165
166 public void interrupt() {
167 super.interrupt();
168 synchronized (this) {
169 beenInterrupted = true;
Class: org.apache.batik.swing.gvt.GVTTreeRenderer ©, Rating: 0% of 0, C1
187
188 public void interrupt() {
189 super.interrupt();
190 synchronized (this) {
191 beenInterrupted = true;
Class: org.apache.axis.components.threadpool.ThreadPool ©, Rating: 100% of 1, C2
153 for (Iterator i = threads.values().iterator(); i.hasNext();) {
154 Thread t = (Thread) i.next();
155 t.interrupt();
156 }
157 }
Class: org.apache.batik.apps.svgbrowser.StatusBar ©, Rating: 0% of 0, C1
238 message.setText(mainMessage = s);
239 if (displayThread != null) {
240 displayThread.interrupt();
241 displayThread = null;
242 }
Class: org.apache.batik.apps.svgbrowser.StatusBar ©, Rating: 0% of 0, C1
223 setPreferredSize(new Dimension(0, getPreferredSize().height));
224 if (displayThread != null) {
225 displayThread.interrupt();
226 }
227 temporaryMessage = s;
Class: org.apache.axis.wsdl.gen.Parser ©, Rating: 0% of 0, C2
222
223 if (wsdlThread.isAlive()) {
224 wsdlThread.interrupt();
225 throw new IOException(Messages.getMessage("timedOut"));
226 }