Add a screen to allow changing project owner, description

Signed-off-by: Shawn O. Pearce <sop@google.com>
This commit is contained in:
Shawn O. Pearce
2008-12-31 18:33:24 -08:00
parent 53127b3a89
commit e959ae4064
5 changed files with 159 additions and 1 deletions

View File

@@ -65,6 +65,13 @@ public final class Project {
protected void set(int newValue) {
id = newValue;
}
/** Parse a Project.Id out of a string representation. */
public static Id parse(final String str) {
final Id r = new Id();
r.fromString(str);
return r;
}
}
@Column