org.springframework.beans.propertyeditors
Class InputStreamEditor

java.lang.Object
  extended byjava.beans.PropertyEditorSupport
      extended byorg.springframework.beans.propertyeditors.InputStreamEditor
All Implemented Interfaces:
PropertyEditor

public class InputStreamEditor
extends PropertyEditorSupport

One-way PropertyEditor, which can convert from a text string to an InputStream, allowing InputStream properties to be set directly as a text string.

The string should be suitable for feeding to a ResourceEditor, since this is what is actually used to produce a Resource from the text, which is then asked for an InputStream.

Note that in the default usage, the stream is not closed by Spring itself!

Since:
1.0.1
Author:
Juergen Hoeller

Constructor Summary
InputStreamEditor()
          Create a new InputStreamEditor, using the default ResourceEditor underneath.
InputStreamEditor(ResourceEditor resourceEditor)
          Create a new InputStreamEditor, using the given ResourceEditor underneath.
 
Method Summary
 void setAsText(String text)
           
 
Methods inherited from class java.beans.PropertyEditorSupport
addPropertyChangeListener, firePropertyChange, getAsText, getCustomEditor, getJavaInitializationString, getTags, getValue, isPaintable, paintValue, removePropertyChangeListener, setValue, supportsCustomEditor
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

InputStreamEditor

public InputStreamEditor()
Create a new InputStreamEditor, using the default ResourceEditor underneath.


InputStreamEditor

public InputStreamEditor(ResourceEditor resourceEditor)
Create a new InputStreamEditor, using the given ResourceEditor underneath.

Parameters:
resourceEditor - the ResourceEditor to use
Method Detail

setAsText

public void setAsText(String text)
               throws IllegalArgumentException
Throws:
IllegalArgumentException


Copyright (C) 2003-2004 The Spring Framework Project.