com.intellij.openapi.vcs
Interface CheckinProjectPanel

All Superinterfaces:
Refreshable

public interface CheckinProjectPanel
extends Refreshable


Field Summary
static java.lang.String REVISIONS
           
 
Fields inherited from interface com.intellij.openapi.vcs.ui.Refreshable
PANEL
 
Method Summary
 void addSelectionChangeListener(SelectionChangeListener listener)
          Adds selection change listener to the panel.
 java.util.List<VcsOperation> getCheckinOperations(CheckinEnvironment checkinEnvironment)
           
 javax.swing.JComponent getComponent()
           
 javax.swing.JComponent getPreferredFocusedComponent()
           
 Project getProject()
           
 java.util.Collection<VirtualFile> getRoots()
           
 java.util.Collection<VirtualFile> getVirtualFiles()
           
 boolean hasDiffs()
           
 void removeSelectionChangeListener(SelectionChangeListener listener)
           
 void setCommitMessage(java.lang.String currentDescription)
           
 
Methods inherited from interface com.intellij.openapi.vcs.ui.Refreshable
refresh, restoreState, saveState
 

Field Detail

REVISIONS

static final java.lang.String REVISIONS
See Also:
Constant Field Values
Method Detail

getComponent

javax.swing.JComponent getComponent()

getPreferredFocusedComponent

javax.swing.JComponent getPreferredFocusedComponent()

hasDiffs

boolean hasDiffs()

addSelectionChangeListener

void addSelectionChangeListener(SelectionChangeListener listener)
Adds selection change listener to the panel. To obtain selected object/objects use passed context with DataConstants.VIRTUAL_FILE or DataConstants.VIRTUAL_FILE_ARRAY constants


removeSelectionChangeListener

void removeSelectionChangeListener(SelectionChangeListener listener)

getVirtualFiles

java.util.Collection<VirtualFile> getVirtualFiles()

getProject

Project getProject()

getCheckinOperations

java.util.List<VcsOperation> getCheckinOperations(CheckinEnvironment checkinEnvironment)

getRoots

java.util.Collection<VirtualFile> getRoots()

setCommitMessage

void setCommitMessage(java.lang.String currentDescription)