Package er.diva.wrapper

Source Code of er.diva.wrapper.ERDIVPageWrapper

package er.diva.wrapper;

import com.webobjects.appserver.WOComponent;
import com.webobjects.appserver.WOContext;
import com.webobjects.directtoweb.D2WContext;
import com.webobjects.directtoweb.D2WPage;
import com.webobjects.foundation.NSDictionary;

public abstract class ERDIVPageWrapper extends WOComponent {
  public NSDictionary<String, String> errorMessages;
 
    public ERDIVPageWrapper(WOContext context) {
        super(context);
    }
   
    public D2WContext d2wContext() {
      if (context().page() instanceof D2WPage) {
      D2WPage d2wPage = (D2WPage) context().page();
      return d2wPage.d2wContext();
    }
      return null;
    }
}
TOP

Related Classes of er.diva.wrapper.ERDIVPageWrapper

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.