summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/Flags.java
blob: 770f869da06b79c0a0902100d663649f3d319a7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*******************************************************************************
 * Copyright (c) 2005, 2007 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.swt.tools.internal;

public interface Flags {

	public static final String FLAG_NO_GEN = "no_gen";
	public static final String FLAG_NO_IN = "no_in";
	public static final String FLAG_NO_OUT = "no_out";
	public static final String FLAG_NO_WINCE = "no_wince";
	public static final String FLAG_CRITICAL = "critical";
	public static final String FLAG_INIT = "init";
	public static final String FLAG_STRUCT = "struct";
	public static final String FLAG_UNICODE = "unicode";
	public static final String FLAG_SENTINEL = "sentinel";
	public static final String FLAG_CPP = "cpp";
	public static final String FLAG_NEW = "new";
	public static final String FLAG_DELETE ="delete";
	public static final String FLAG_CONST = "const";
	public static final String FLAG_CAST = "cast";
	public static final String FLAG_DYNAMIC = "dynamic";
	public static final String FLAG_JNI = "jni";
	public static final String FLAG_ADDRESS = "address";
	public static final String FLAG_GCNEW = "gcnew";
	public static final String FLAG_GCOBJECT = "gcobject";
	public static final String FLAG_SETTER = "setter";
	public static final String FLAG_GETTER = "getter";
	public static final String FLAG_ADDER = "adder";
}