1 29 package net.sourceforge.groboutils.pmti.v1.defimpl; 30 31 import net.sourceforge.groboutils.pmti.v1.IEditableIssueState; 32 import net.sourceforge.groboutils.pmti.v1.IAttributeSet; 33 import net.sourceforge.groboutils.pmti.v1.IEditableAttributeSet; 34 35 43 public class DefaultEditableIssueState extends DefaultIssueState 44 implements IEditableIssueState 45 { 46 47 public DefaultEditableIssueState( String n, String d, boolean o, 48 IEditableAttributeSet s ) 49 { 50 super( n, d, o, s ); 51 } 52 53 54 58 public IEditableAttributeSet getEditableAttributes() 59 { 60 return (IEditableAttributeSet)getAttributes(); 61 } 62 63 } 64 65 | Popular Tags |