package com.jbase.jbuilder5vcs; import java.beans.*; /** * Title: JBuilder5/Perforce * Description: Integration of Perforce on jBuilder * Copyright: Copyright (c) 2001 * Company: jBase * @author * @version 1.0 */ public class moneditor extends PropertyEditorSupport { public moneditor() { } private static String[] tagStrings = { }; public String[] getTags() { return tagStrings; } public String getJavaInitializationString() { return "\"" + getAsText() + "\""; } public void setAsText(String text) throws IllegalArgumentException { setValue(text); } }
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#1 | 1072 | rmg |
Integrate the "jBuilder5VCS" frmo Nicolas Jorand into //public; Plan is to add some top-level documentation before linking it into the "roadmap", or making any sort of general public announcement. |
||
//guest/nicolas_jorand/jBuilder5VCS/src/com/jbase/jbuilder5vcs/moneditor.java | |||||
#1 | 939 | nicolas_jorand | First input of perforce integration for jBuilder5 |