summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/JNIParameter.java
blob: 364a7027e71c21397d0245a5d137a8cbe0baaf5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package org.eclipse.swt.tools.internal;

public interface JNIParameter extends JNIItem {

	public static final String[] FLAGS = {FLAG_NO_IN, FLAG_NO_OUT, FLAG_CRITICAL, FLAG_INIT, FLAG_STRUCT, FLAG_UNICODE, FLAG_SENTINEL, FLAG_GCOBJECT};

public String getCast();

public JNIMethod getMethod();

public int getParameter();

public JNIClass getTypeClass();

public JNIType getType();

public JNIType getType64();

public void setCast(String str);
}