weka.gui
Class FileEditor

java.lang.Object
  extended byjava.beans.PropertyEditorSupport
      extended byweka.gui.FileEditor
All Implemented Interfaces:
java.beans.PropertyEditor

public class FileEditor
extends java.beans.PropertyEditorSupport

A PropertyEditor for File objects that lets the user select a file.

Version:
$Revision: 1.7 $
Author:
Len Trigg (trigg@cs.waikato.ac.nz)

Constructor Summary
FileEditor()
           
 
Method Summary
 java.awt.Component getCustomEditor()
          Gets the custom editor component.
 java.lang.String getJavaInitializationString()
          Returns a representation of the current property value as java source.
 boolean isPaintable()
          Returns true since this editor is paintable.
 void paintValue(java.awt.Graphics gfx, java.awt.Rectangle box)
          Paints a representation of the current Object.
 boolean supportsCustomEditor()
          Returns true because we do support a custom editor.
 
Methods inherited from class java.beans.PropertyEditorSupport
addPropertyChangeListener, firePropertyChange, getAsText, getTags, getValue, removePropertyChangeListener, setAsText, setValue
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

FileEditor

public FileEditor()
Method Detail

getJavaInitializationString

public java.lang.String getJavaInitializationString()
Returns a representation of the current property value as java source.

Returns:
a value of type 'String'

supportsCustomEditor

public boolean supportsCustomEditor()
Returns true because we do support a custom editor.

Returns:
true

getCustomEditor

public java.awt.Component getCustomEditor()
Gets the custom editor component.

Returns:
a value of type 'java.awt.Component'

isPaintable

public boolean isPaintable()
Returns true since this editor is paintable.

Returns:
true.

paintValue

public void paintValue(java.awt.Graphics gfx,
                       java.awt.Rectangle box)
Paints a representation of the current Object.

Parameters:
gfx - the graphics context to use
box - the area we are allowed to paint into