BrightSide Workbench Full Report + Source Code
All Classes Namespaces Files Functions Variables Pages
org.turro.file.action.AddFolderAction Class Reference
Inheritance diagram for org.turro.file.action.AddFolderAction:
Collaboration diagram for org.turro.file.action.AddFolderAction:

Public Member Functions

 AddFolderAction (FileWrapper fw)
 
String getLabel ()
 
String getImage ()
 
Object doAction ()
 
boolean refreshParent ()
 
boolean refreshSelf ()
 
boolean isClientSide ()
 

Detailed Description

Author
Lluis Turró Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g

Definition at line 30 of file AddFolderAction.java.

Constructor & Destructor Documentation

◆ AddFolderAction()

org.turro.file.action.AddFolderAction.AddFolderAction ( FileWrapper  fw)

Definition at line 34 of file AddFolderAction.java.

34  {
35  this.fw = fw;
36  }

Member Function Documentation

◆ doAction()

Object org.turro.file.action.AddFolderAction.doAction ( )

Implements org.turro.file.action.FileAction.

Definition at line 49 of file AddFolderAction.java.

49  {
50  try {
51  fw.getFileItem().doAddFolder();
52  } catch (InterruptedException ex) {
53  Logger.getLogger(AddFolderAction.class.getName()).log(Level.SEVERE, ElephantContext.logMsg(null), ex);
54  }
55  return null;
56  }
Here is the call graph for this function:

◆ getImage()

String org.turro.file.action.AddFolderAction.getImage ( )

Implements org.turro.file.action.FileAction.

Definition at line 44 of file AddFolderAction.java.

44  {
45  return null;
46  }

◆ getLabel()

String org.turro.file.action.AddFolderAction.getLabel ( )

Implements org.turro.file.action.FileAction.

Definition at line 39 of file AddFolderAction.java.

39  {
40  return I_.get("Add folder");
41  }
Here is the call graph for this function:

◆ isClientSide()

boolean org.turro.file.action.AddFolderAction.isClientSide ( )

Implements org.turro.file.action.FileAction.

Definition at line 69 of file AddFolderAction.java.

69  {
70  return false;
71  }

◆ refreshParent()

boolean org.turro.file.action.AddFolderAction.refreshParent ( )

Implements org.turro.file.action.FileAction.

Definition at line 59 of file AddFolderAction.java.

59  {
60  return false;
61  }

◆ refreshSelf()

boolean org.turro.file.action.AddFolderAction.refreshSelf ( )

Implements org.turro.file.action.FileAction.

Definition at line 64 of file AddFolderAction.java.

64  {
65  return true;
66  }

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