File: ExampleInterface.java

package info (click to toggle)
libjdepend-java 2.9-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 800 kB
  • ctags: 782
  • sloc: java: 3,873; xml: 549; makefile: 7; sh: 6
file content (20 lines) | stat: -rw-r--r-- 401 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package jdepend.framework;

import java.math.BigDecimal;

/**
 * @author <b>Mike Clark</b>
 * @author Clarkware Consulting, Inc.
 */

public interface ExampleInterface {

    public void a();

    public java.util.Vector b(String[] s, java.text.NumberFormat nf);

    public void c(BigDecimal bd, byte[] b) throws java.rmi.RemoteException;

    public java.io.File[] d() throws java.io.IOException;

}