~ubuntu-branches/ubuntu/wily/japitools/wily

« back to all changes in this revision

Viewing changes to src/net/wuffies/japi/Wrapper.java

  • Committer: Bazaar Package Importer
  • Author(s): Wolfgang Baer
  • Date: 2005-10-06 15:52:05 UTC
  • Revision ID: james.westby@ubuntu.com-20051006155205-f3t983pid9uyc0gv
Tags: upstream-0.9.5+cvs20051006
ImportĀ upstreamĀ versionĀ 0.9.5+cvs20051006

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
///////////////////////////////////////////////////////////////////////////////
 
2
// Japize - Output a machine-readable description of a Java API.
 
3
// Copyright (C) 2000,2002,2003,2004  Stuart Ballard <stuart.a.ballard@gmail.com>
 
4
// 
 
5
// This program is free software; you can redistribute it and/or
 
6
// modify it under the terms of the GNU General Public License
 
7
// as published by the Free Software Foundation; either version 2
 
8
// of the License, or (at your option) any later version.
 
9
// 
 
10
// This program is distributed in the hope that it will be useful,
 
11
// but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
// GNU General Public License for more details.
 
14
// 
 
15
// You should have received a copy of the GNU General Public License
 
16
// along with this program; if not, write to the Free Software
 
17
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
18
///////////////////////////////////////////////////////////////////////////////
 
19
 
 
20
package net.wuffies.japi;
 
21
 
 
22
public interface Wrapper {
 
23
  int getModifiers();
 
24
  boolean isDeprecated();
 
25
}
 
26