1 22 23 package org.meshcms.taglib; 24 25 import java.io.*; 26 import org.meshcms.core.*; 27 import org.meshcms.util.*; 28 29 33 public class IfNotMailForm extends AbstractTag { 34 public void writeTag() throws IOException { 35 } 37 38 public int getStartTagReturnValue() { 39 return (Utils.checkAddress(getPage().getProperty(PageAssembler.EMAIL_PARAM)) && !isEdit) ? 40 SKIP_BODY : EVAL_BODY_INCLUDE; 41 } 42 } 43 | Popular Tags |