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

« back to all changes in this revision

Viewing changes to hawtjni-generator/src/main/java/org/fusesource/hawtjni/generator/model/JNIParameter.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
 * Copyright (c) 2004, 2008 IBM Corporation and others.
 
4
 *
 
5
 * All rights reserved. This program and the accompanying materials
 
6
 * are made available under the terms of the Eclipse Public License v1.0
 
7
 * which accompanies this distribution, and is available at
 
8
 * http://www.eclipse.org/legal/epl-v10.html
 
9
 *
 
10
 *******************************************************************************/
 
11
package org.fusesource.hawtjni.generator.model;
 
12
 
 
13
import org.fusesource.hawtjni.runtime.ArgFlag;
 
14
 
 
15
/**
 
16
 * 
 
17
 * @author <a href="http://hiramchirino.com">Hiram Chirino</a>
 
18
 */
 
19
public interface JNIParameter {
 
20
 
 
21
    public boolean getFlag(ArgFlag flag);
 
22
    public String getCast();
 
23
    public boolean isPointer();
 
24
 
 
25
    public JNIMethod getMethod();
 
26
    public int getParameter();
 
27
    public JNIClass getTypeClass();
 
28
    public JNIType getType32();
 
29
    public JNIType getType64();
 
30
 
 
31
}