| 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.
|
Method Summary | |
public void | clearModel() Currently only removes the first childs level. | public SourceFile | createNewJavaPackage(SourceFile parentPackage, String packageName) Create a new directory (java package).
ONLY direck childs can be created. | public SourceFile | createNewJavaSourceFile(SourceFile packageFile, String className, String content) Used to create new source files (called from new source dialog). | public SourceFile | createOrGetPackage(SourceFile parentPackage, String packageName) Get Or creates a new directory (java package). | public void | delete(SourceFile file) Deletes source or directory (only empty can be removed). | public void | deleteCachedEditedContents(SourceFile branch) Save is not enough, when data has changed on the disk, this must be called. | public void | getAllDirectoriesRecurse_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 void | getAllSourceFilesRecurse(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 FileItem | getPackage(String javaName) Parameters: javaName - is like "my.package.name". | public SourceFile | getRootSource() | public SourceFile | getSourceFile(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 SourceFile | getSourceFileContaining(String javaName) | public File | getSourcesRoot() 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 boolean | isEmpty() | public void | markMainProjectSource() Just for the view, reads the main class name from the project. | public FileItem | quickGet(String javaName, boolean caseSensitive) | public FileItem | quickPackageGet(String javaName, boolean caseSensitive) | public void | renameInCache(SourceFile file, String oldJavaName) | public ChangesAnalysisResult | scanForDifferencesWithFileSystem(SourceFile branch) Added/removed, changed files are detected.
Useful when a CVS update was performed. | public void | setFolderColors() Must be called after all changes in the files structure. | public void | setProject(ProjectSettings project, ProgressModalDialog pmd, boolean firstLoad) Empty the actual model, reload the whole model. | public void | storeFileFlags(ProjectSettings project) | public void | updateAnnotationsCache(SourceFile sf) |
SourcesTreeModel | public SourcesTreeModel()(Code) | | |
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.
|
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. |
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
|
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
|
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)
|
|
|