KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > daffodilwoods > daffodildb > server > sql99 > dcl > sqlcontrolstatement > IterateLeaveResult


1 package com.daffodilwoods.daffodildb.server.sql99.dcl.sqlcontrolstatement;
2
3 public class IterateLeaveResult {
4
5    public static int LEAVETYPE = 0;
6    public static int ITERATETYPE = 1;
7
8    String JavaDoc label;
9    int type;
10
11    public IterateLeaveResult() {}
12
13    public IterateLeaveResult(String JavaDoc tempLabel, int ty) {
14       label = tempLabel;
15       type = ty;
16    }
17
18    public String JavaDoc getLabel() {
19       return label;
20    }
21
22    public void setLabel(String JavaDoc tempLabel) {
23       label = tempLabel;
24    }
25
26    public int getType() {
27       return type;
28    }
29
30    public void setType(int ty) {
31       type = ty;
32    }
33 }
34
Popular Tags