KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > celtix > tools > common > model > JavaReturn


1 package org.objectweb.celtix.tools.common.model;
2
3 public class JavaReturn extends JavaType {
4     public JavaReturn() {
5     }
6     
7     public JavaReturn(String JavaDoc n, String JavaDoc t, String JavaDoc tns) {
8         super(n, t, tns);
9     }
10 }
11
Popular Tags