package stickfigure; import java.beans.*; public class MoodEditor extends PropertyEditorSupport { protected int mood; // // implement the following methods: // public void setValue(Object o) { } public Object getValue() { } public String getAsText() { } public void setAsText(String s) throws IllegalArgumentException { } public String[] getTags() { } }