RegexImpl1.java :  » XML » pirka » org » pirkaengine » form » annotation » Java Open Source

Java Open Source » XML » pirka 
pirka » org » pirkaengine » form » annotation » RegexImpl1.java
package org.pirkaengine.form.annotation;

import java.lang.annotation.Annotation;

@SuppressWarnings("all")
public class RegexImpl1 extends AbstractValuedAnnotationImpl implements Regex1 {

    public RegexImpl1(String value) {
        this(value, "");
    }

    public RegexImpl1(String value, String messageKey) {
        super(value, messageKey);
    }

    @Override
    public Class<? extends Annotation> annotationType() {
        return Regex1.class;
    }

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.