1 29 package net.sourceforge.groboutils.pmti.v1; 30 31 32 33 55 public interface IEditableIssue extends IIssue 56 { 57 58 59 62 public void setShortDescription( String desc ); 63 64 65 70 public boolean hasShortDescriptionChanged(); 71 72 73 80 public IEditableIssueState[] getNextStates(); 81 82 83 94 public void setState( IIssueState state ) 95 throws ProblemManagerException; 96 97 98 105 public boolean hasStateChanged(); 106 107 108 114 public IEditableAttributeSet getEditableAttributes(); 115 116 117 127 public void commit() 128 throws ProblemManagerException; 129 } 130 131 | Popular Tags |