[virtualcommons-svn] SF.net SVN: virtualcommons:[341] mentalmodels/trunk/src/main/java/edu/asu/ co
Status: Beta
Brought to you by:
alllee
From: <see...@us...> - 2009-10-28 19:01:45
|
Revision: 341 http://virtualcommons.svn.sourceforge.net/virtualcommons/?rev=341&view=rev Author: seematalele Date: 2009-10-28 19:01:39 +0000 (Wed, 28 Oct 2009) Log Message: ----------- Changed the filed name indexId to IndexID Modified Paths: -------------- mentalmodels/trunk/src/main/java/edu/asu/commons/mme/entity/InformationWindow.java Modified: mentalmodels/trunk/src/main/java/edu/asu/commons/mme/entity/InformationWindow.java =================================================================== --- mentalmodels/trunk/src/main/java/edu/asu/commons/mme/entity/InformationWindow.java 2009-10-28 18:48:36 UTC (rev 340) +++ mentalmodels/trunk/src/main/java/edu/asu/commons/mme/entity/InformationWindow.java 2009-10-28 19:01:39 UTC (rev 341) @@ -23,7 +23,7 @@ private Long id; @Column(name="indexId",nullable=false) - private Long indexId; + private Long indexID; @Column(name="title",nullable=false) private String title; @@ -56,12 +56,12 @@ return blockInfoWindows; } - public void setIndexId(Long indexId) { - this.indexId = indexId; + public void setIndexID(Long indexID) { + this.indexID = indexID; } - public Long getIndexId() { - return indexId; + public Long getIndexID() { + return indexID; } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |