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 IfMailForm extends AbstractTag { 34 public void writeTag() throws IOException { 35 } 37 38 public int getStartTagReturnValue() { 39 return (isEdit || Utils.checkAddress(getPage().getProperty(PageAssembler.EMAIL_PARAM))) ? 40 EVAL_BODY_INCLUDE : SKIP_BODY; 41 } 42 } 43 | Popular Tags |