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

Quick Search    Search Deep

Source code: org/mobicents/slee/container/management/jmx/ObjectPropertyEditor.java


1   /***************************************************
2    *                                                 *
3    *  Mobicents: The Open Source JSLEE Platform      *
4    *                                                 *
5    *  Distributable under LGPL license.              *
6    *  See terms of license at gnu.org.               *
7    *                                                 *
8    ***************************************************/
9   /*
10   * ObjectEditor.java
11   * 
12   * Created on 13 déc. 2004
13   *
14   */
15  package org.mobicents.slee.container.management.jmx;
16  
17  import org.jboss.util.propertyeditor.TextPropertyEditorSupport;
18  
19  /**
20   * 
21   * @author DERUELLE Jean <a href="mailto:jean.deruelle@gmail.com">jean.deruelle@gmail.com</a>
22   */
23  public class ObjectPropertyEditor 
24       extends TextPropertyEditorSupport {
25      
26  
27      public void setAsText(String attributeValue){
28          super.setValue(attributeValue);
29      }
30  }