Java Doc for SourcesTreeModel.java in  » IDE » tIDE » tide » sources » 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 » IDE » tIDE » tide.sources 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   javax.swing.tree.DefaultTreeModel
      tide.sources.SourcesTreeModel

SourcesTreeModel
public class SourcesTreeModel extends DefaultTreeModel implements JavaFilesTreeModel(Code)
The model of the project sources files (not libraries). The method of this model should be use to add/remove nodes, because this also forward the UI events and manages the folder colors. The source folders may also contain resources (pictures, ...). Here, we don't display them, but we allow for marking folders as ignored. These hints allow to decide if the project jar file contains or not theses folders contents.


Field Summary
final public  Set<String>knownAnnotations
    
final public  Set<String>knownInterfaces
    

Constructor Summary
public  SourcesTreeModel()
    

Method Summary
public  voidclearModel()
     Currently only removes the first childs level.
public  SourceFilecreateNewJavaPackage(SourceFile parentPackage, String packageName)
     Create a new directory (java package). ONLY direck childs can be created.
public  SourceFilecreateNewJavaSourceFile(SourceFile packageFile, String className, String content)
     Used to create new source files (called from new source dialog).
public  SourceFilecreateOrGetPackage(SourceFile parentPackage, String packageName)
     Get Or creates a new directory (java package).
public  voiddelete(SourceFile file)
     Deletes source or directory (only empty can be removed).
public  voiddeleteCachedEditedContents(SourceFile branch)
     Save is not enough, when data has changed on the disk, this must be called.
public  voidgetAllDirectoriesRecurse_depthFirst(SourceFile troot, List<SourceFile> dirs)
    
public  List<File>getAllResourceFiles(java.util.List<String> customIgnoredEndings)
    
public  List<SourceFile>getAllSourceFiles(boolean includeIgnored)
    
public  List<SourceFile>getAllSourceFilesAndDirectories(boolean includeIgnored)
     All the java source files and directories, present in the loaded project.
public  List<SourceFile>getAllSourceFilesContainingName(String javaPartName, boolean caseSensitive, boolean exact)
     used for the user help, lazy inexact search TODO: improve: exact global match with pack, caseless global match with package, ending match ("."+xx) if not in root.
public  List<SourceFile>getAllSourceFilesNotCompiled()
     only the java source files, present in the loaded project, no directories items (package) that have the isCompiled() false (not uptodate, new, ...).
public  voidgetAllSourceFilesRecurse(SourceFile troot, List<SourceFile> files, boolean includeDirectories, boolean includeIgnoredFiles)
     collects the sourcefiles in the current model (newly added ones in the filesystem are ignored !) ignored = ignored in project, marked by the user.
public  List<SourceFile>getAllSourceFilesWithSimpleNameStartingWith(String start)
    
final public  List<SourceFile>getAllSourceFilesWithoutActualDependencies()
    
public  List<String>getFirstLevelPackages()
    
public  FileItemgetPackage(String javaName)
    
Parameters:
  javaName - is like "my.package.name".
public  SourceFilegetRootSource()
    
public  SourceFilegetSourceFile(String javaName, String fileName)
    
Parameters:
  javaName - is the full class name (NOT the package name) "aaa.bbb.ClassA"
Parameters:
  fileName - is the file name (ClassA.java) maybe different if not containing a top level public typegive an empty name in normal cases.
public  SourceFilegetSourceFileContaining(String javaName)
    
public  FilegetSourcesRoot()
     the sources root.
public  List<SourceFile>getTopLevelSources()
     In the unnamed scope ! Should be avoided: javadoc ignore them and they are not accessible from any other package (either with reflection, tricky...).
public  booleanisEmpty()
    
public  voidmarkMainProjectSource()
     Just for the view, reads the main class name from the project.
public  FileItemquickGet(String javaName, boolean caseSensitive)
    
public  FileItemquickPackageGet(String javaName, boolean caseSensitive)
    
public  voidrenameInCache(SourceFile file, String oldJavaName)
    
public  ChangesAnalysisResultscanForDifferencesWithFileSystem(SourceFile branch)
     Added/removed, changed files are detected. Useful when a CVS update was performed.
public  voidsetFolderColors()
     Must be called after all changes in the files structure.
public  voidsetProject(ProjectSettings project, ProgressModalDialog pmd, boolean firstLoad)
     Empty the actual model, reload the whole model.
public  voidstoreFileFlags(ProjectSettings project)
    
public  voidupdateAnnotationsCache(SourceFile sf)
    

Field Detail
knownAnnotations
final public Set<String> knownAnnotations(Code)



knownInterfaces
final public Set<String> knownInterfaces(Code)




Constructor Detail
SourcesTreeModel
public SourcesTreeModel()(Code)




Method Detail
clearModel
public void clearModel()(Code)
Currently only removes the first childs level.



createNewJavaPackage
public SourceFile createNewJavaPackage(SourceFile parentPackage, String packageName) throws Exception(Code)
Create a new directory (java package). ONLY direck childs can be created. Use createNewJavaPackageRec for recursive.



createNewJavaSourceFile
public SourceFile createNewJavaSourceFile(SourceFile packageFile, String className, String content) throws Exception(Code)
Used to create new source files (called from new source dialog).



createOrGetPackage
public SourceFile createOrGetPackage(SourceFile parentPackage, String packageName) throws Exception(Code)
Get Or creates a new directory (java package). Pass null for the root.



delete
public void delete(SourceFile file) throws Exception(Code)
Deletes source or directory (only empty can be removed). Called to delete a source or when a source has been found disapeared (in sync).



deleteCachedEditedContents
public void deleteCachedEditedContents(SourceFile branch)(Code)
Save is not enough, when data has changed on the disk, this must be called.



getAllDirectoriesRecurse_depthFirst
public void getAllDirectoriesRecurse_depthFirst(SourceFile troot, List<SourceFile> dirs)(Code)
only the directories (packages)



getAllResourceFiles
public List<File> getAllResourceFiles(java.util.List<String> customIgnoredEndings)(Code)
Ignores childs of folders marked as ignored in the project tree (of the sources) TODO: no possibility to specify which root files should be ignored



getAllSourceFiles
public List<SourceFile> getAllSourceFiles(boolean includeIgnored)(Code)
only the java source files, present in the loaded project, no directories items (package)



getAllSourceFilesAndDirectories
public List<SourceFile> getAllSourceFilesAndDirectories(boolean includeIgnored)(Code)
All the java source files and directories, present in the loaded project.



getAllSourceFilesContainingName
public List<SourceFile> getAllSourceFilesContainingName(String javaPartName, boolean caseSensitive, boolean exact)(Code)
used for the user help, lazy inexact search TODO: improve: exact global match with pack, caseless global match with package, ending match ("."+xx) if not in root.



getAllSourceFilesNotCompiled
public List<SourceFile> getAllSourceFilesNotCompiled()(Code)
only the java source files, present in the loaded project, no directories items (package) that have the isCompiled() false (not uptodate, new, ...).



getAllSourceFilesRecurse
public void getAllSourceFilesRecurse(SourceFile troot, List<SourceFile> files, boolean includeDirectories, boolean includeIgnoredFiles)(Code)
collects the sourcefiles in the current model (newly added ones in the filesystem are ignored !) ignored = ignored in project, marked by the user.



getAllSourceFilesWithSimpleNameStartingWith
public List<SourceFile> getAllSourceFilesWithSimpleNameStartingWith(String start)(Code)



getAllSourceFilesWithoutActualDependencies
final public List<SourceFile> getAllSourceFilesWithoutActualDependencies()(Code)
The length of the files are used to know if changed (=> invalid)



getFirstLevelPackages
public List<String> getFirstLevelPackages()(Code)
Don't return the ignored ones! can be used for the documentation for example, where one has to specify the packages to parse



getPackage
public FileItem getPackage(String javaName)(Code)

Parameters:
  javaName - is like "my.package.name". non null if found.



getRootSource
public SourceFile getRootSource()(Code)



getSourceFile
public SourceFile getSourceFile(String javaName, String fileName)(Code)

Parameters:
  javaName - is the full class name (NOT the package name) "aaa.bbb.ClassA"
Parameters:
  fileName - is the file name (ClassA.java) maybe different if not containing a top level public typegive an empty name in normal cases. null if not found



getSourceFileContaining
public SourceFile getSourceFileContaining(String javaName)(Code)
aaa.a.main => aaa.a NOT VERY ROBUST ! but very practical for user help, for example in the editor 1) ignore classes with file different names 2) in case of files and packages with same name, return the file without further analysis



getSourcesRoot
public File getSourcesRoot()(Code)
the sources root.



getTopLevelSources
public List<SourceFile> getTopLevelSources()(Code)
In the unnamed scope ! Should be avoided: javadoc ignore them and they are not accessible from any other package (either with reflection, tricky...). Ignores directories and ignored files.



isEmpty
public boolean isEmpty()(Code)



markMainProjectSource
public void markMainProjectSource()(Code)
Just for the view, reads the main class name from the project. must be called when changes



quickGet
public FileItem quickGet(String javaName, boolean caseSensitive)(Code)



quickPackageGet
public FileItem quickPackageGet(String javaName, boolean caseSensitive)(Code)



renameInCache
public void renameInCache(SourceFile file, String oldJavaName)(Code)



scanForDifferencesWithFileSystem
public ChangesAnalysisResult scanForDifferencesWithFileSystem(SourceFile branch)(Code)
Added/removed, changed files are detected. Useful when a CVS update was performed. Allow updating without simply closing/reloading. + A save must be made prior. + after: you must call: MainEditorFrame.instance.editorPanel.replaceContentWithContentOnDisk();



setFolderColors
public void setFolderColors()(Code)
Must be called after all changes in the files structure. Sets the red, green or mixed color of the java files based on the read/write state of the files. [Dec2006]: empty folders (no java files) are white.



setProject
public void setProject(ProjectSettings project, ProgressModalDialog pmd, boolean firstLoad)(Code)
Empty the actual model, reload the whole model. (look at actual disk files and read their vec rep if present in project)
Parameters:
  firstLoad - if true, don't print out the new files



storeFileFlags
public void storeFileFlags(ProjectSettings project)(Code)
store the file properties (flags, ignored, ...) in the project



updateAnnotationsCache
public void updateAnnotationsCache(SourceFile sf)(Code)
LAZY: only looks t the toplevel type



Fields inherited from javax.swing.tree.DefaultTreeModel
protected boolean asksAllowsChildren(Code)(Java Doc)
protected EventListenerList listenerList(Code)(Java Doc)
protected TreeNode root(Code)(Java Doc)

Methods inherited from javax.swing.tree.DefaultTreeModel
public void addTreeModelListener(TreeModelListener l)(Code)(Java Doc)
public boolean asksAllowsChildren()(Code)(Java Doc)
protected void fireTreeNodesChanged(Object source, Object[] path, int[] childIndices, Object[] children)(Code)(Java Doc)
protected void fireTreeNodesInserted(Object source, Object[] path, int[] childIndices, Object[] children)(Code)(Java Doc)
protected void fireTreeNodesRemoved(Object source, Object[] path, int[] childIndices, Object[] children)(Code)(Java Doc)
protected void fireTreeStructureChanged(Object source, Object[] path, int[] childIndices, Object[] children)(Code)(Java Doc)
public Object getChild(Object parent, int index)(Code)(Java Doc)
public int getChildCount(Object parent)(Code)(Java Doc)
public int getIndexOfChild(Object parent, Object child)(Code)(Java Doc)
public T[] getListeners(Class<T> listenerType)(Code)(Java Doc)
public TreeNode[] getPathToRoot(TreeNode aNode)(Code)(Java Doc)
protected TreeNode[] getPathToRoot(TreeNode aNode, int depth)(Code)(Java Doc)
public Object getRoot()(Code)(Java Doc)
public TreeModelListener[] getTreeModelListeners()(Code)(Java Doc)
public void insertNodeInto(MutableTreeNode newChild, MutableTreeNode parent, int index)(Code)(Java Doc)
public boolean isLeaf(Object node)(Code)(Java Doc)
public void nodeChanged(TreeNode node)(Code)(Java Doc)
public void nodeStructureChanged(TreeNode node)(Code)(Java Doc)
public void nodesChanged(TreeNode node, int[] childIndices)(Code)(Java Doc)
public void nodesWereInserted(TreeNode node, int[] childIndices)(Code)(Java Doc)
public void nodesWereRemoved(TreeNode node, int[] childIndices, Object[] removedChildren)(Code)(Java Doc)
public void reload()(Code)(Java Doc)
public void reload(TreeNode node)(Code)(Java Doc)
public void removeNodeFromParent(MutableTreeNode node)(Code)(Java Doc)
public void removeTreeModelListener(TreeModelListener l)(Code)(Java Doc)
public void setAsksAllowsChildren(boolean newValue)(Code)(Java Doc)
public void setRoot(TreeNode root)(Code)(Java Doc)
public void valueForPathChanged(TreePath path, Object newValue)(Code)(Java Doc)

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.