BrightSide Workbench Full Report + Source Code
org.turro.zkoss.text.RepositoryItem Class Reference
Inheritance diagram for org.turro.zkoss.text.RepositoryItem:
Collaboration diagram for org.turro.zkoss.text.RepositoryItem:

Public Member Functions

 RepositoryItem (File file, String name, String path)
 
File getRepositoryFile ()
 
boolean isFolder (String folder)
 

Detailed Description

Constructor & Destructor Documentation

◆ RepositoryItem()

org.turro.zkoss.text.RepositoryItem.RepositoryItem ( File  file,
String  name,
String  path 
)

Definition at line 41 of file elephant-zkoss/src/main/java/org/turro/zkoss/text/RepositoryItem.java.

41  {
42  super(name);
43  this.file = file;
44  this.path = path;
45  if(doProcessors(file)) {
46  setOpen(false);
47  fillFolder();
48  }
49  }

Member Function Documentation

◆ getRepositoryFile()

File org.turro.zkoss.text.RepositoryItem.getRepositoryFile ( )

Definition at line 51 of file elephant-zkoss/src/main/java/org/turro/zkoss/text/RepositoryItem.java.

51  {
52  return new File(file, path);
53  }

◆ isFolder()

boolean org.turro.zkoss.text.RepositoryItem.isFolder ( String  folder)

Definition at line 55 of file elephant-zkoss/src/main/java/org/turro/zkoss/text/RepositoryItem.java.

55  {
56  return ElephantContext.getRelativePath(file.getAbsolutePath()).equals(folder);
57  }
Here is the call graph for this function:
Here is the caller graph for this function:

The documentation for this class was generated from the following file: