Java Doc for TestInstances.java in  » Science » weka » weka » core » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Science » weka » weka.core 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   weka.core.TestInstances

TestInstances
public class TestInstances implements Cloneable,Serializable,OptionHandler(Code)
Generates artificial datasets for testing. In case of Multi-Instance data the settings for the number of attributes applies to the data inside the bag. Originally based on code from the CheckClassifier.

Valid options are:

 -relation <name>
 The name of the data set.
 -seed <num>
 The seed value.
 -num-instances <num>
 The number of instances in the datasets (default 20).
 -class-type <num>
 The class type, see constants in weka.core.Attribute
 (default 1=nominal).
 -class-values <num>
 The number of classes to generate (for nominal classes only)
 (default 2).
 -class-index <num>
 The class index, with -1=last, (default -1).
 -no-class
 Doesn't include a class attribute in the output.
 -nominal <num>
 The number of nominal attributes (default 1).
 -nominal-values <num>
 The number of values for nominal attributes (default 2).
 -numeric <num>
 The number of numeric attributes (default 0).
 -string <num>
 The number of string attributes (default 0).
 -words <comma-separated-list>
 The words to use in string attributes.
 -word-separators <chars>
 The word separators to use in string attributes.
 -date <num>
 The number of date attributes (default 0).
 -relational <num>
 The number of relational attributes (default 0).
 -relational-nominal <num>
 The number of nominal attributes in a rel. attribute (default 1).
 -relational-nominal-values <num>
 The number of values for nominal attributes in a rel. attribute (default 2).
 -relational-numeric <num>
 The number of numeric attributes in a rel. attribute (default 0).
 -relational-string <num>
 The number of string attributes in a rel. attribute (default 0).
 -relational-date <num>
 The number of date attributes in a rel. attribute (default 0).
 -num-instances-relational <num>
 The number of instances in relational/bag attributes (default 10).
 -multi-instance
 Generates multi-instance data.
 -W <classname>
 The Capabilities handler to base the dataset on.
 The other parameters can be used to override the ones
 determined from the handler. Additional parameters for
 handler can be passed on after the '--'.

author:
   FracPete (fracpete at waikato dot ac dot nz)
version:
   $Revision: 1.9 $
See Also:   weka.classifiers.CheckClassifier


Field Summary
final public static  intCLASS_IS_LAST
    
final public static  StringDEFAULT_SEPARATORS
    
final public static  String[]DEFAULT_WORDS
    
final public static  intNO_CLASS
    
protected  intm_ClassIndex
    
protected  intm_ClassType
    
protected  Instancesm_Data
    
protected  CapabilitiesHandlerm_Handler
    
protected  booleanm_MultiInstance
    
protected  intm_NumClasses
    
protected  intm_NumDate
    
protected  intm_NumInstances
    
protected  intm_NumInstancesRelational
    
protected  intm_NumNominal
    
protected  intm_NumNominalValues
    
protected  intm_NumNumeric
    
protected  intm_NumRelational
    
protected  intm_NumRelationalDate
    
protected  intm_NumRelationalNominal
    
protected  intm_NumRelationalNominalValues
    
protected  intm_NumRelationalNumeric
    
protected  intm_NumRelationalString
    
protected  intm_NumString
    
protected  Randomm_Random
    
protected  Stringm_Relation
    
protected  Instancesm_RelationalClassFormat
    
protected  Instances[]m_RelationalFormat
    
protected  intm_Seed
    
protected  Stringm_WordSeparators
    
protected  String[]m_Words
    

Constructor Summary
public  TestInstances()
    

Method Summary
protected static  StringarrayToList(String[] value)
    
public  voidassign(TestInstances t)
    
public  Objectclone()
    
public static  TestInstancesforCapabilities(Capabilities c)
     returns a TestInstances instance setup already for the the given capabilities.
public  Instancesgenerate()
     generates a new dataset.
protected  AttributegenerateAttribute(int index, int attType)
    
protected  doublegenerateAttributeValue(Instances data, int index, double classVal)
     Generates a new value for the specified attribute.
protected  doublegenerateClassValue(Instances data)
    
public  intgetClassIndex()
    
public  intgetClassType()
    
public  InstancesgetData()
    
public  CapabilitiesHandlergetHandler()
    
public  booleangetMultiInstance()
    
public  booleangetNoClass()
    
public  intgetNumAttributes()
     returns the overall number of attributes (incl.
public  intgetNumClasses()
    
public  intgetNumDate()
    
public  intgetNumInstances()
    
public  intgetNumInstancesRelational()
    
public  intgetNumNominal()
    
public  intgetNumNominalValues()
    
public  intgetNumNumeric()
    
public  intgetNumRelational()
    
public  intgetNumRelationalDate()
    
public  intgetNumRelationalNominal()
    
public  intgetNumRelationalNominalValues()
    
public  intgetNumRelationalNumeric()
    
public  intgetNumRelationalString()
    
public  intgetNumString()
    
public  String[]getOptions()
     Gets the current settings of this object.
public  StringgetRelation()
    
public  InstancesgetRelationalClassFormat()
    
public  InstancesgetRelationalFormat(int index)
    
public  intgetSeed()
    
public  StringgetWordSeparators()
     returns the word separators (chars) to use for assembling strings.
public  StringgetWords()
     returns the words used for assembling strings in a comma-separated list.
public  EnumerationlistOptions()
     Returns an enumeration describing the available options.
protected static  String[]listToArray(String value)
    
public static  voidmain(String[] args)
    
public  voidsetClassIndex(int value)
    
public  voidsetClassType(int value)
    
public  voidsetHandler(CapabilitiesHandler value)
    
public  voidsetMultiInstance(boolean value)
    
public  voidsetNoClass(boolean value)
    
public  voidsetNumClasses(int value)
    
public  voidsetNumDate(int value)
    
public  voidsetNumInstances(int value)
    
public  voidsetNumInstancesRelational(int value)
    
public  voidsetNumNominal(int value)
    
public  voidsetNumNominalValues(int value)
    
public  voidsetNumNumeric(int value)
    
public  voidsetNumRelational(int value)
    
public  voidsetNumRelationalDate(int value)
    
public  voidsetNumRelationalNominal(int value)
    
public  voidsetNumRelationalNominalValues(int value)
    
public  voidsetNumRelationalNumeric(int value)
    
public  voidsetNumRelationalString(int value)
    
public  voidsetNumString(int value)
    
public  voidsetOptions(String[] options)
     Parses a given list of options.
public  voidsetRelation(String value)
    
public  voidsetRelationalClassFormat(Instances value)
    
public  voidsetRelationalFormat(int index, Instances value)
    
public  voidsetSeed(int value)
    
public  voidsetWordSeparators(String value)
     sets the word separators (chars) to use for assembling strings.
public  voidsetWords(String value)
     Sets the comma-separated list of words to use for generating strings.
public  StringtoString()
    

Field Detail
CLASS_IS_LAST
final public static int CLASS_IS_LAST(Code)
can be used for settting the class attribute index to last
See Also:   TestInstances.setClassIndex(int)
See Also:   



DEFAULT_SEPARATORS
final public static String DEFAULT_SEPARATORS(Code)
the default word separators used in strings



DEFAULT_WORDS
final public static String[] DEFAULT_WORDS(Code)
the default list of words used in strings



NO_CLASS
final public static int NO_CLASS(Code)
can be used to avoid generating a class attribute
See Also:   TestInstances.setClassIndex(int)
See Also:   



m_ClassIndex
protected int m_ClassIndex(Code)
the class index (-1 is LAST, -2 means no class)
See Also:   TestInstances.CLASS_IS_LAST
See Also:   TestInstances.NO_CLASS
See Also:   



m_ClassType
protected int m_ClassType(Code)
the class type



m_Data
protected Instances m_Data(Code)
the generated data



m_Handler
protected CapabilitiesHandler m_Handler(Code)
the CapabilitiesHandler to get the Capabilities from



m_MultiInstance
protected boolean m_MultiInstance(Code)
whether to generate Multi-Instance data or not



m_NumClasses
protected int m_NumClasses(Code)
the number of classes (in case of NOMINAL class)



m_NumDate
protected int m_NumDate(Code)
the number of date attributes



m_NumInstances
protected int m_NumInstances(Code)
the number of instances



m_NumInstancesRelational
protected int m_NumInstancesRelational(Code)
the number of instances in relational attributes (applies also for bags in multi-instance)



m_NumNominal
protected int m_NumNominal(Code)
the number of nominal attributes



m_NumNominalValues
protected int m_NumNominalValues(Code)
the number of values for nominal attributes



m_NumNumeric
protected int m_NumNumeric(Code)
the number of numeric attributes



m_NumRelational
protected int m_NumRelational(Code)
the number of relational attributes



m_NumRelationalDate
protected int m_NumRelationalDate(Code)
the number of date attributes in a relational attribute



m_NumRelationalNominal
protected int m_NumRelationalNominal(Code)
the number of nominal attributes in a relational attribute



m_NumRelationalNominalValues
protected int m_NumRelationalNominalValues(Code)
the number of values for nominal attributes in relational attributes



m_NumRelationalNumeric
protected int m_NumRelationalNumeric(Code)
the number of numeric attributes in a relational attribute



m_NumRelationalString
protected int m_NumRelationalString(Code)
the number of string attributes in a relational attribute



m_NumString
protected int m_NumString(Code)
the number of string attributes



m_Random
protected Random m_Random(Code)
the random number generator



m_Relation
protected String m_Relation(Code)
the name of the relation



m_RelationalClassFormat
protected Instances m_RelationalClassFormat(Code)
the format of the multi-instance data of the class



m_RelationalFormat
protected Instances[] m_RelationalFormat(Code)
the format of the multi-instance data



m_Seed
protected int m_Seed(Code)
the seed value



m_WordSeparators
protected String m_WordSeparators(Code)
for generating String attributes/classes



m_Words
protected String[] m_Words(Code)
for generating String attributes/classes




Constructor Detail
TestInstances
public TestInstances()(Code)
the default constructor




Method Detail
arrayToList
protected static String arrayToList(String[] value)(Code)
turns the array into a comma-separated list
Parameters:
  value - the array to process the array as list



assign
public void assign(TestInstances t)(Code)
updates itself with all the settings from the given TestInstances object
Parameters:
  t - the object to get the settings from



clone
public Object clone()(Code)
creates a clone of the current object a clone of the current object



forCapabilities
public static TestInstances forCapabilities(Capabilities c)(Code)
returns a TestInstances instance setup already for the the given capabilities.
Parameters:
  c - the capabilities to base the TestInstances on the configured TestInstances object



generate
public Instances generate() throws Exception(Code)
generates a new dataset. the generated data
throws:
  Exception - if something goes wrong



generateAttribute
protected Attribute generateAttribute(int index, int attType) throws Exception(Code)
creates a new Attribute of the given type
Parameters:
  index - the index of the current attribute (0-based)
Parameters:
  attType - the attribute type (NUMERIC, NOMINAL, etc.) the configured attribute
throws:
  Exception - if something goes wrong, e.g., an unknown attribute type
See Also:   Attribute.type
See Also:   TestInstances.CLASS_IS_LAST
See Also:   TestInstances.NO_CLASS



generateAttributeValue
protected double generateAttributeValue(Instances data, int index, double classVal) throws Exception(Code)
Generates a new value for the specified attribute. The classValue might be used in the process.
Parameters:
  data - the dataset to work on
Parameters:
  index - the index of the attribute
Parameters:
  classVal - the class value for the current instance, might be used in the calculation the new attribute value
throws:
  Exception - if something goes wrong



generateClassValue
protected double generateClassValue(Instances data) throws Exception(Code)
Generates the class value
Parameters:
  data - the dataset to work on the new class value
throws:
  Exception - if something goes wrong



getClassIndex
public int getClassIndex()(Code)
returns the current class index (0-based), -1 is last attribute the class index
See Also:   TestInstances.CLASS_IS_LAST
See Also:   TestInstances.NO_CLASS



getClassType
public int getClassType()(Code)
returns the current class type the class attribute type



getData
public Instances getData()(Code)
returns the current dataset, can be null the current dataset



getHandler
public CapabilitiesHandler getHandler()(Code)
returns the current set CapabilitiesHandler to generate the dataset for, can be null the handler to generate the data for



getMultiInstance
public boolean getMultiInstance()(Code)
Gets whether multi-instance data (with a fixed structure) is generated true if multi-instance data is generated



getNoClass
public boolean getNoClass()(Code)
whether no class attribute is generated true if no class attribute is generated



getNumAttributes
public int getNumAttributes()(Code)
returns the overall number of attributes (incl. class, if that is also generated) the overall number of attributes



getNumClasses
public int getNumClasses()(Code)
returns the current number of classes the number of classes



getNumDate
public int getNumDate()(Code)
returns the current number of date attributes the number of date attributes



getNumInstances
public int getNumInstances()(Code)
returns the current number of instances to produce the number of instances



getNumInstancesRelational
public int getNumInstancesRelational()(Code)
returns the current number of instances in relational/bag attributes to produce the number of instances



getNumNominal
public int getNumNominal()(Code)
returns the current number of nominal attributes the number of nominal attributes



getNumNominalValues
public int getNumNominalValues()(Code)
returns the current number of values for nominal attributes the number of values



getNumNumeric
public int getNumNumeric()(Code)
returns the current number of numeric attributes the number of numeric attributes



getNumRelational
public int getNumRelational()(Code)
returns the current number of relational attributes the number of relational attributes



getNumRelationalDate
public int getNumRelationalDate()(Code)
returns the current number of date attributes in a relational attribute the number of date attributes



getNumRelationalNominal
public int getNumRelationalNominal()(Code)
returns the current number of nominal attributes in a relational attribute the number of nominal attributes



getNumRelationalNominalValues
public int getNumRelationalNominalValues()(Code)
returns the current number of values for nominal attributes in a relational attribute the number of values



getNumRelationalNumeric
public int getNumRelationalNumeric()(Code)
returns the current number of numeric attributes in a relational attribute the number of numeric attributes



getNumRelationalString
public int getNumRelationalString()(Code)
returns the current number of string attributes in a relational attribute the number of string attributes



getNumString
public int getNumString()(Code)
returns the current number of string attributes the number of string attributes



getOptions
public String[] getOptions()(Code)
Gets the current settings of this object. an array of strings suitable for passing to setOptions



getRelation
public String getRelation()(Code)
returns the current name of the relation the name of the relation



getRelationalClassFormat
public Instances getRelationalClassFormat()(Code)
returns the current strcuture of the relational class attribute, can be null the relational structure of the class attribute



getRelationalFormat
public Instances getRelationalFormat(int index)(Code)
returns the format for the specified relational attribute, can be null
Parameters:
  index - the index of the relational attribute the current structure



getSeed
public int getSeed()(Code)
returns the current seed value the seed value



getWordSeparators
public String getWordSeparators()(Code)
returns the word separators (chars) to use for assembling strings. the current separators



getWords
public String getWords()(Code)
returns the words used for assembling strings in a comma-separated list. the words as comma-separated list



listOptions
public Enumeration listOptions()(Code)
Returns an enumeration describing the available options. an enumeration of all the available options.



listToArray
protected static String[] listToArray(String value)(Code)
turns the comma-separated list into an array
Parameters:
  value - the list to process the list as array



main
public static void main(String[] args) throws Exception(Code)
for running the class from commandline, prints the generated data to stdout
Parameters:
  args - the commandline parameters
throws:
  Exception - if something goes wrong



setClassIndex
public void setClassIndex(int value)(Code)
sets the class index (0-based)
Parameters:
  value - the class index
See Also:   TestInstances.CLASS_IS_LAST
See Also:   TestInstances.NO_CLASS



setClassType
public void setClassType(int value)(Code)
sets the class attribute type
Parameters:
  value - the class attribute type



setHandler
public void setHandler(CapabilitiesHandler value)(Code)
sets the Capabilities handler to generate the data for
Parameters:
  value - the handler to generate the data for



setMultiInstance
public void setMultiInstance(boolean value)(Code)
sets whether multi-instance data should be generated (with a fixed data structure)
Parameters:
  value - whether multi-instance data is generated



setNoClass
public void setNoClass(boolean value)(Code)
whether to have no class, e.g., for clusterers; otherwise the class attribute index is set to last
Parameters:
  value - whether to have no class
See Also:   TestInstances.CLASS_IS_LAST
See Also:   TestInstances.NO_CLASS



setNumClasses
public void setNumClasses(int value)(Code)
sets the number of classes
Parameters:
  value - the number of classes



setNumDate
public void setNumDate(int value)(Code)
sets the number of date attributes
Parameters:
  value - the number of date attributes



setNumInstances
public void setNumInstances(int value)(Code)
sets the number of instances to produce
Parameters:
  value - the number of instances



setNumInstancesRelational
public void setNumInstancesRelational(int value)(Code)
sets the number of instances in relational/bag attributes to produce
Parameters:
  value - the number of instances



setNumNominal
public void setNumNominal(int value)(Code)
sets the number of nominal attributes
Parameters:
  value - the number of nominal attributes



setNumNominalValues
public void setNumNominalValues(int value)(Code)
sets the number of values for nominal attributes
Parameters:
  value - the number of values



setNumNumeric
public void setNumNumeric(int value)(Code)
sets the number of numeric attributes
Parameters:
  value - the number of numeric attributes



setNumRelational
public void setNumRelational(int value)(Code)
sets the number of relational attributes
Parameters:
  value - the number of relational attributes



setNumRelationalDate
public void setNumRelationalDate(int value)(Code)
sets the number of date attributes in a relational attribute
Parameters:
  value - the number of date attributes



setNumRelationalNominal
public void setNumRelationalNominal(int value)(Code)
sets the number of nominal attributes in a relational attribute
Parameters:
  value - the number of nominal attributes



setNumRelationalNominalValues
public void setNumRelationalNominalValues(int value)(Code)
sets the number of values for nominal attributes in a relational attribute
Parameters:
  value - the number of values



setNumRelationalNumeric
public void setNumRelationalNumeric(int value)(Code)
sets the number of numeric attributes in a relational attribute
Parameters:
  value - the number of numeric attributes



setNumRelationalString
public void setNumRelationalString(int value)(Code)
sets the number of string attributes in a relational attribute
Parameters:
  value - the number of string attributes



setNumString
public void setNumString(int value)(Code)
sets the number of string attributes
Parameters:
  value - the number of string attributes



setOptions
public void setOptions(String[] options) throws Exception(Code)
Parses a given list of options.

Valid options are:

 -relation <name>
 The name of the data set.
 -seed <num>
 The seed value.
 -num-instances <num>
 The number of instances in the datasets (default 20).
 -class-type <num>
 The class type, see constants in weka.core.Attribute
 (default 1=nominal).
 -class-values <num>
 The number of classes to generate (for nominal classes only)
 (default 2).
 -class-index <num>
 The class index, with -1=last, (default -1).
 -no-class
 Doesn't include a class attribute in the output.
 -nominal <num>
 The number of nominal attributes (default 1).
 -nominal-values <num>
 The number of values for nominal attributes (default 2).
 -numeric <num>
 The number of numeric attributes (default 0).
 -string <num>
 The number of string attributes (default 0).
 -words <comma-separated-list>
 The words to use in string attributes.
 -word-separators <chars>
 The word separators to use in string attributes.
 -date <num>
 The number of date attributes (default 0).
 -relational <num>
 The number of relational attributes (default 0).
 -relational-nominal <num>
 The number of nominal attributes in a rel. attribute (default 1).
 -relational-nominal-values <num>
 The number of values for nominal attributes in a rel. attribute (default 2).
 -relational-numeric <num>
 The number of numeric attributes in a rel. attribute (default 0).
 -relational-string <num>
 The number of string attributes in a rel. attribute (default 0).
 -relational-date <num>
 The number of date attributes in a rel. attribute (default 0).
 -num-instances-relational <num>
 The number of instances in relational/bag attributes (default 10).
 -multi-instance
 Generates multi-instance data.
 -W <classname>
 The Capabilities handler to base the dataset on.
 The other parameters can be used to override the ones
 determined from the handler. Additional parameters for
 handler can be passed on after the '--'.

Parameters:
  options - the list of options as an array of strings
throws:
  Exception - if an option is not supported



setRelation
public void setRelation(String value)(Code)
sets the name of the relation
Parameters:
  value - the name of the relation



setRelationalClassFormat
public void setRelationalClassFormat(Instances value)(Code)
sets the structure for the relational class attribute
Parameters:
  value - the structure for the relational attribute



setRelationalFormat
public void setRelationalFormat(int index, Instances value)(Code)
sets the structure for the bags for the relational attribute
Parameters:
  index - the index of the relational attribute
Parameters:
  value - the new structure



setSeed
public void setSeed(int value)(Code)
sets the seed value for the random number generator
Parameters:
  value - the seed



setWordSeparators
public void setWordSeparators(String value)(Code)
sets the word separators (chars) to use for assembling strings.
Parameters:
  value - the characters to use as separators



setWords
public void setWords(String value)(Code)
Sets the comma-separated list of words to use for generating strings. The list must contain at least 2 words, otherwise an exception will be thrown.
Parameters:
  value - the list of words
throws:
  IllegalArgumentException - if not at least 2 words are provided



toString
public String toString()(Code)
returns a string representation of the object a string representation of the object



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.