com.antiaction.raptor.dao.ViewBase Maven / Gradle / Ivy
/*
* Created on 24/05/2010
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
*/
package com.antiaction.raptor.dao;
import java.sql.Connection;
public abstract class ViewBase {
/*
* Initialized directly by storage layer.
*/
/** View id. */
public int id;
/** View name. */
public String name;
/** Implementation package name. */
public String class_namespace;
/** Implementation class name. */
public String class_name;
/** Root id of tree. */
public int root_id;
/** Root type id of tree. */
public int root_type_id;
/** Sequence number used for sorting views. */
public int seq;
/** Default content viewpane. */
public String default_viewpane;
/** Icon 16x16. */
public String icon_16;
/** Icon 24x24. */
public String icon_24;
/*
* Initialized by View.
*/
public ITreeContentProvider treeContentProvider;
public IContentProvider contentProvider;
//public boolean display;
public String root_icon;
public String root_name;
public abstract void init(Connection conn);
public abstract void destroy();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy