Java Doc for ModuleInfo.java in  » Scripting » Kawa » gnu » expr » 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 » Scripting » Kawa » gnu.expr 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   gnu.expr.ModuleInfo

ModuleInfo
public class ModuleInfo (Code)


Field Summary
public  StringclassName
     Name of class that implements module.
 Compilationcomp
    
 ModuleInfo[]dependencies
    
 ModuleExpexp
    
public  longlastCheckedTime
    
public  longlastModifiedTime
    
public  ClassmoduleClass
    
 ModuleInfonext
    
 intnumDependencies
    
 PathsourceAbsPath
    
 StringsourceAbsPathname
    
public  StringsourcePath
     Location of source for module, if known.
 Stringuri
    


Method Summary
public static  PathabsPath(String path)
    
public synchronized  voidaddDependency(ModuleInfo dep)
    
public  booleancheckCurrent(ModuleManager manager, long now)
     Check if this module and its dependencies are up-to-dete.
public  voidclearClass()
    
public static  ModuleInfofind(String className)
    
public static  ModuleInfofind(Type type)
    
public static  ModuleInfofindFromInstance(Object instance)
    
public  ClassTypegetClassType()
    
public  CompilationgetCompilation()
    
public  ObjectgetInstance()
    
public  ClassgetModuleClass()
    
public synchronized  ModuleExpgetModuleExp()
    
public  StringgetNamespaceUri()
     The namespace URI associated with this module, or null .
public  ObjectgetRunInstance()
    
public  PathgetSourceAbsPath()
    
public  StringgetSourceAbsPathname()
    
public  intgetState()
    
public  voidloadByStages(int wantedState)
    
public  booleanloadEager(int wantedState)
     Eagerly process the module and dependencies.
static  voidmakeDeclInModule2(ModuleExp mod, Declaration fdecl)
    
public  ModuleInfonextModule()
     Next element in list head by ModuleManager.modules .
public static  voidregister(Object instance)
    
public  voidsetCompilation(Compilation comp)
    
public  voidsetNamespaceUri(String uri)
    
public  voidsetSourceAbsPath(Path path)
    
public synchronized  ModuleExpsetupModuleExp()
     If module has LAZY_DECLARATIONS, fix that.
public  StringtoString()
    

Field Detail
className
public String className(Code)
Name of class that implements module. Must be non-null unless we're currently compiling the module, in which case sourcePath and comp must both be non-null.



comp
Compilation comp(Code)



dependencies
ModuleInfo[] dependencies(Code)



exp
ModuleExp exp(Code)



lastCheckedTime
public long lastCheckedTime(Code)



lastModifiedTime
public long lastModifiedTime(Code)



moduleClass
public Class moduleClass(Code)



next
ModuleInfo next(Code)



numDependencies
int numDependencies(Code)



sourceAbsPath
Path sourceAbsPath(Code)



sourceAbsPathname
String sourceAbsPathname(Code)



sourcePath
public String sourcePath(Code)
Location of source for module, if known. This is an absolute URI, absolute filename, or filename relative to current working directory. Null if source not known; in that case className must be non-null.



uri
String uri(Code)





Method Detail
absPath
public static Path absPath(String path)(Code)



addDependency
public synchronized void addDependency(ModuleInfo dep)(Code)



checkCurrent
public boolean checkCurrent(ModuleManager manager, long now)(Code)
Check if this module and its dependencies are up-to-dete. Only checks the sourcePath's modification time if it is at least ModifiedCacheTime since last time we checked. As as side-effects update lastModifiedTime and lastCheckedTime.



clearClass
public void clearClass()(Code)



find
public static ModuleInfo find(String className)(Code)



find
public static ModuleInfo find(Type type)(Code)



findFromInstance
public static ModuleInfo findFromInstance(Object instance)(Code)



getClassType
public ClassType getClassType()(Code)



getCompilation
public Compilation getCompilation()(Code)



getInstance
public Object getInstance()(Code)



getModuleClass
public Class getModuleClass() throws ClassNotFoundException(Code)



getModuleExp
public synchronized ModuleExp getModuleExp()(Code)



getNamespaceUri
public String getNamespaceUri()(Code)
The namespace URI associated with this module, or null . This is null for Scheme modules, but non-null for XQuery modules.



getRunInstance
public Object getRunInstance()(Code)



getSourceAbsPath
public Path getSourceAbsPath()(Code)



getSourceAbsPathname
public String getSourceAbsPathname()(Code)



getState
public int getState()(Code)



loadByStages
public void loadByStages(int wantedState)(Code)



loadEager
public boolean loadEager(int wantedState)(Code)
Eagerly process the module and dependencies. true on success; false if we were unable to because ofan error or a cyclic dependency.



makeDeclInModule2
static void makeDeclInModule2(ModuleExp mod, Declaration fdecl)(Code)



nextModule
public ModuleInfo nextModule()(Code)
Next element in list head by ModuleManager.modules .



register
public static void register(Object instance)(Code)



setCompilation
public void setCompilation(Compilation comp)(Code)



setNamespaceUri
public void setNamespaceUri(String uri)(Code)



setSourceAbsPath
public void setSourceAbsPath(Path path)(Code)



setupModuleExp
public synchronized ModuleExp setupModuleExp()(Code)
If module has LAZY_DECLARATIONS, fix that.



toString
public String toString()(Code)



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.