home *** CD-ROM | disk | FTP | other *** search
- package lotus.notes;
-
- public class ViewColumn extends NotesBase {
- private transient View view;
-
- protected ViewColumn() throws NotesException {
- }
-
- protected ViewColumn(View var1, int var2) throws NotesException {
- super(var2, 15);
- if (var1 == null) {
- throw new NotesException(JavaString.resource.getString("missing_view_object"));
- } else {
- this.view = var1;
- var1.AddColumn(this);
- }
- }
-
- protected void InternalFinalize() throws NotesException {
- super.finalize();
- }
-
- public void finalize() throws NotesException {
- this.view.RemoveColumn(this);
- this.InternalFinalize();
- }
-
- public int GetCppObj() {
- return super.GetCppObj();
- }
-
- public String getTitle() throws NotesException {
- ((NotesBase)this).CheckObject();
- return ((NotesBase)this).PropGetString(1430);
- }
-
- public String toString() {
- String var1;
- try {
- var1 = this.getTitle();
- } catch (Exception var2) {
- var1 = null;
- }
-
- return var1;
- }
-
- public String getItemName() throws NotesException {
- ((NotesBase)this).CheckObject();
- return ((NotesBase)this).PropGetString(1431);
- }
-
- public int getPosition() throws NotesException {
- ((NotesBase)this).CheckObject();
- return ((NotesBase)this).PropGetInt(1432);
- }
-
- public String getFormula() throws NotesException {
- ((NotesBase)this).CheckObject();
- return ((NotesBase)this).PropGetString(1433);
- }
-
- public boolean isSorted() throws NotesException {
- ((NotesBase)this).CheckObject();
- return ((NotesBase)this).PropGetBool(1434);
- }
-
- public boolean isCategory() throws NotesException {
- ((NotesBase)this).CheckObject();
- return ((NotesBase)this).PropGetBool(1435);
- }
-
- public boolean isHidden() throws NotesException {
- ((NotesBase)this).CheckObject();
- return ((NotesBase)this).PropGetBool(1436);
- }
-
- public boolean isResponse() throws NotesException {
- ((NotesBase)this).CheckObject();
- return ((NotesBase)this).PropGetBool(1437);
- }
-
- public int getWidth() throws NotesException {
- ((NotesBase)this).CheckObject();
- return ((NotesBase)this).PropGetInt(1438);
- }
- }
-