All Downloads are FREE. Search and download functionalities are using the official Maven repository.

fitnesse.slim.test.AnotherEnumEditor Maven / Gradle / Ivy

There is a newer version: 20241026
Show newest version
package fitnesse.slim.test;

import java.beans.PropertyEditorSupport;

public class AnotherEnumEditor extends PropertyEditorSupport {

  @Override
  public void setAsText(String value) {
    setValue("enum property editor called with \"" + value + "\"");
  }

  @Override
  public String getAsText() {
    String value = (String) getValue();
    return value;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy