All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.opensymphony.webwork.sitegraph.entities.JspView Maven / Gradle / Ivy

package com.opensymphony.webwork.sitegraph.entities;

import java.io.File;
import java.util.regex.Pattern;

/**
 * User: plightbo
 * Date: Jun 25, 2005
 * Time: 2:19:15 PM
 */
public class JspView extends FileBasedView {
    public JspView(File file) {
        super(file);
    }

    protected Pattern getActionPattern() {
        return Pattern.compile("]*name=\"([^\"]+)\"[^>]*>");
    }

    protected Pattern getFormPattern() {
        return Pattern.compile("]*action=\"([^\"]+)\"[^>]*>");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy