1 16 17 package org.apache.jetspeed.om.profile.psml; 18 19 import org.apache.jetspeed.om.profile.Skin; 20 21 27 public class PsmlSkin extends PsmlConfigElement implements Skin 28 { 29 private String state = null; 30 31 public String getState() 32 { 33 return this.state; 34 } 35 36 public void setState( String state ) 37 { 38 this.state = state; 39 } 40 41 } 42 | Popular Tags |