Skip to content

Commit

Permalink
Added annotation literals
Browse files Browse the repository at this point in the history
  • Loading branch information
gastaldi committed Aug 16, 2011
1 parent 87b4809 commit 7a5b53e
Show file tree
Hide file tree
Showing 4 changed files with 124 additions and 0 deletions.
@@ -0,0 +1,29 @@
/**
* JBoss, Home of Professional Open Source
* Copyright 2011, Red Hat, Inc. and/or its affiliates, and individual
* contributors by the @authors tag. See the copyright.txt in the
* distribution for a full listing of individual contributors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jboss.seam.reports.jasper;

import javax.enterprise.util.AnnotationLiteral;

import org.jboss.seam.reports.jasper.annotations.Jasper;

@SuppressWarnings("all")
public class JasperLiteral extends AnnotationLiteral<Jasper> implements Jasper {
private static final long serialVersionUID = 1L;

public static final Jasper INSTANCE = new JasperLiteral();

}
@@ -0,0 +1,30 @@
/**
* JBoss, Home of Professional Open Source
* Copyright 2011, Red Hat, Inc. and/or its affiliates, and individual
* contributors by the @authors tag. See the copyright.txt in the
* distribution for a full listing of individual contributors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jboss.seam.reports.mvel;

import javax.enterprise.util.AnnotationLiteral;

import org.jboss.seam.reports.mvel.annotations.MVEL;

@SuppressWarnings("all")
public class MVELLiteral extends AnnotationLiteral<MVEL> implements MVEL
{

private static final long serialVersionUID = 1L;
public static final MVEL INSTANCE = new MVELLiteral();

}
@@ -0,0 +1,33 @@
/**
* JBoss, Home of Professional Open Source
* Copyright 2011, Red Hat, Inc. and/or its affiliates, and individual
* contributors by the @authors tag. See the copyright.txt in the
* distribution for a full listing of individual contributors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jboss.seam.reports.pentaho;

import javax.enterprise.util.AnnotationLiteral;

import org.jboss.seam.reports.pentaho.annotations.PentahoReporting;

@SuppressWarnings("all")
public class PentahoReportingLiteral extends AnnotationLiteral<PentahoReporting> implements PentahoReporting
{

/**
*
*/
private static final long serialVersionUID = 1L;
public static final PentahoReporting INSTANCE = new PentahoReportingLiteral();

}
@@ -0,0 +1,32 @@
/**
* JBoss, Home of Professional Open Source
* Copyright 2011, Red Hat, Inc. and/or its affiliates, and individual
* contributors by the @authors tag. See the copyright.txt in the
* distribution for a full listing of individual contributors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jboss.seam.reports.xdocreport;

import javax.enterprise.util.AnnotationLiteral;

import org.jboss.seam.reports.xdocreport.annotations.XDocReport;

@SuppressWarnings("all")
public class XDocReportLiteral extends AnnotationLiteral<XDocReport> implements XDocReport {

/**
*
*/
private static final long serialVersionUID = 1L;
public static final XDocReport INSTANCE = new XDocReportLiteral();

}

0 comments on commit 7a5b53e

Please sign in to comment.