Created 2 class diagrams: Button and ExpandAll

Also created a new method in genj/src/core/genj/tree/Model.java called
clearHiddenIds()
master
sib12004 2015-10-13 13:37:22 -04:00
parent 9b02e9cfee
commit 774e5004c6
5 changed files with 6307 additions and 18 deletions

View File

@ -14,5 +14,5 @@
<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" value="genj.app.App"/> <stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" value="genj.app.App"/>
<stringAttribute key="org.eclipse.jdt.launching.PROGRAM_ARGUMENTS" value="gedcom/royal92.ged"/> <stringAttribute key="org.eclipse.jdt.launching.PROGRAM_ARGUMENTS" value="gedcom/royal92.ged"/>
<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="genj"/> <stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="genj"/>
<stringAttribute key="org.eclipse.jdt.launching.VM_ARGUMENTS" value="-Dgenj.debug.level=FINE -Duser.language=DE -Xmx1024m -Dgenj.edit.beans.cache=false -Dcom.sun.management.jmxremote"/> <stringAttribute key="org.eclipse.jdt.launching.VM_ARGUMENTS" value="-Dgenj.debug.level=FINE -Duser.language=EN -Xmx1024m -Dgenj.edit.beans.cache=false -Dcom.sun.management.jmxremote"/>
</launchConfiguration> </launchConfiguration>

2163
Button.cld 100644

File diff suppressed because it is too large Load Diff

4115
ExpandAll.cld 100644

File diff suppressed because it is too large Load Diff

5
build/eclipse/.gitignore vendored 100644
View File

@ -0,0 +1,5 @@
/contrib
/core
/report
/run
/tst

View File

@ -367,6 +367,12 @@ import java.util.concurrent.CopyOnWriteArrayList;
hideAncestors.addAll(ids); hideAncestors.addAll(ids);
} }
//OUR ATTEMPT AT CLEARING THE LIST OF HIDDEN IDS
public void clearHiddenIDs() {
hideAncestors.clear();
hideDescendants.clear();
}
/** /**
* Accessor - id's of entities hiding descendants * Accessor - id's of entities hiding descendants
*/ */