[Join-cvs] join1/src/main/org/figure8/join/control/form PhysicalEnvironmentForm.java, 1.2, 1.3
Brought to you by:
lbroudoux
|
From: Laurent B. <lbr...@us...> - 2007-04-08 18:44:23
|
Update of /cvsroot/join/join1/src/main/org/figure8/join/control/form In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv23488/control/form Modified Files: PhysicalEnvironmentForm.java Log Message: Adding getting configuration at date feature + fixing Checkstyle errors Index: PhysicalEnvironmentForm.java =================================================================== RCS file: /cvsroot/join/join1/src/main/org/figure8/join/control/form/PhysicalEnvironmentForm.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** PhysicalEnvironmentForm.java 9 Oct 2006 20:23:50 -0000 1.2 --- PhysicalEnvironmentForm.java 8 Apr 2007 18:44:20 -0000 1.3 *************** *** 50,53 **** --- 50,56 ---- private int startMin; + /** Wether the requested operation is made from the logical environment point of view */ + private boolean fromLogical = false; + /** The String representation of changes tracking period start date. */ private String startDateStr = null; *************** *** 109,112 **** --- 112,133 ---- } + /** @return The configuration tracking start hour */ + public int getStartHour(){ + return startHour; + } + /** @return The configuration tracking start minute */ + public int getStartMin(){ + return startMin; + } + + /** @return Wether the requested operation is made from the logical environment point of view */ + public boolean isFromLogical(){ + return fromLogical; + } + /** @param fromLogical Wether the requested operation is made from the logical environment point of view */ + public void setFromLogical(boolean fromLogical){ + this.fromLogical = fromLogical; + } + /** @param startDateStr The String representation of changes tracking period start date (must be a date) */ public void setStartDateStr(String startDateStr){ *************** *** 237,240 **** --- 258,262 ---- startDate = null; endDate = null; + fromLogical = false; startHour = 0; startMin = 0; |