Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Interface
javatools.util.Clippable

Uses of Clippable in javatools.util
 

Fields in javatools.util declared as Clippable
private  Clippable[] Clipboard.clipObjects
           
 

Methods in javatools.util that return Clippable
 Clippable Clippable.cut()
          Cuts the object.
 Clippable Clippable.copy()
          Copies this object.
 Clippable Clippable.duplicate()
          Duplicates (clones) this object.
static Clippable[] Clipboard.buildClippableArray(javax.swing.JTree tree)
           
 Clippable Clipboard.getClipObject()
          Returns the first of the array of clipped objects.
 Clippable[] Clipboard.getClipObjects()
          Returns the array of clipped objects.
 

Methods in javatools.util with parameters of type Clippable
 void Clippable.paste(Clippable newFather)
          Pastes the object into another.
 void Clippable.attach(Clippable newSon)
          Attaches another object into this one.
 boolean Clippable.canBeAttached(Clippable newSon)
          Checks whether the passed object can be attached into this one.
static boolean Clipboard.isOmogeneous(Clippable[] clips)
           
static java.lang.String Clipboard.getFirstType(Clippable[] clips)
           
static boolean Clipboard.canBeCut(Clippable[] clips, boolean checkOnlyOne)
           
static boolean Clipboard.canBeCopied(Clippable[] clips, boolean checkOnlyOne)
           
 boolean Clipboard.canBeAttached(Clippable clip, boolean checkOnlyOne)
           
 void Clipboard.cut(Clippable clip)
          Cuts an item.
 void Clipboard.cut(Clippable[] clips)
          Cuts an array of items.
 void Clipboard.copy(Clippable clip)
          Copies an item.
 void Clipboard.copy(Clippable[] clips)
          Copies an array of items.
 void Clipboard.paste(Clippable father)
          Pastes an item.