comparison src/main/java/de/mpiwg/itgroup/ismi/entry/beans/AbstractISMIBean.java @ 119:4aa8c425685d

less System.out.println.
author casties
date Fri, 06 Jan 2017 16:59:37 +0100
parents 2b77751e4021
children 32ce1f93ad33
comparison
equal deleted inserted replaced
118:579839a2e3e2 119:4aa8c425685d
190 /** 190 /**
191 * Clear the bean by setting a new empty entity. 191 * Clear the bean by setting a new empty entity.
192 * @return 192 * @return
193 */ 193 */
194 public String clearAction(){ 194 public String clearAction(){
195 System.out.println("clearAction"); 195 //System.out.println("clearAction");
196 this.entity = new Entity(Node.TYPE_ABOX, this.defObjectClass, false); 196 this.entity = new Entity(Node.TYPE_ABOX, this.defObjectClass, false);
197 this.setEntity(this.entity); 197 this.setEntity(this.entity);
198 return PAGE_EDITOR; 198 return PAGE_EDITOR;
199 } 199 }
200 200