~ubuntu-branches/ubuntu/quantal/hawtjni/quantal

« back to all changes in this revision

Viewing changes to hawtjni-runtime/src/main/java/org/fusesource/hawtjni/runtime/JniClass.java

  • Committer: Bazaar Package Importer
  • Author(s): Miguel Landaeta
  • Date: 2010-08-05 19:40:25 UTC
  • Revision ID: james.westby@ubuntu.com-20100805194025-3004hn889accwu2i
Tags: upstream-1.0~+git0c502e20c4
ImportĀ upstreamĀ versionĀ 1.0~+git0c502e20c4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*******************************************************************************
 
2
 * Copyright (c) 2009 Progress Software, Inc.
 
3
 * 
 
4
 * All rights reserved. This program and the accompanying materials
 
5
 * are made available under the terms of the Eclipse Public License v1.0
 
6
 * which accompanies this distribution, and is available at
 
7
 * http://www.eclipse.org/legal/epl-v10.html
 
8
 *******************************************************************************/
 
9
package org.fusesource.hawtjni.runtime;
 
10
 
 
11
/**
 
12
 * 
 
13
 */
 
14
import java.lang.annotation.Retention;
 
15
import java.lang.annotation.RetentionPolicy;
 
16
import java.lang.annotation.Target;
 
17
 
 
18
import static java.lang.annotation.ElementType.*;
 
19
 
 
20
@Target({TYPE})
 
21
@Retention(RetentionPolicy.RUNTIME)
 
22
public @interface JniClass {
 
23
    
 
24
    ClassFlag[] flags() default {};
 
25
 
 
26
    String conditional() default "";
 
27
}