Update of 
/cvsroot/xdoclet-plugins/xdoclet-plugins/plugin-jdo/src/main/java/org/xdoclet/plugin/jdo/qtags/parameters
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26752

Added Files:
        IdentityType.java JdoColumn.java JdoInheritance.java 
        Table.java 
Log Message:
Add initial version of JDO plugin

--- NEW FILE: Table.java ---
/*
 * Copyright (c) 2003
 * XDoclet Team
 * All rights reserved.
 */
package org.xdoclet.plugin.jdo.qtags.parameters;

/**
 * @author Anatol Pomozov
 */
public interface Table {
    String getTable();
}
--- NEW FILE: JdoInheritance.java ---
/*
 * Copyright (c) 2003
 * XDoclet Team
 * All rights reserved.
 */
package org.xdoclet.plugin.jdo.qtags.parameters;

/**
 * @author Anatol Pomozov
 */
public interface JdoInheritance {
    String getStrategy();
}
--- NEW FILE: IdentityType.java ---
/*
 * Copyright (c) 2003
 * XDoclet Team
 * All rights reserved.
 */
package org.xdoclet.plugin.jdo.qtags.parameters;

/**
 * @author Anatol Pomozov
 */
public interface IdentityType {
    /**
     * @qtags.allowed-value application
     * @qtags.allowed-value datastore
     * @qtags.allowed-value nondurable
     */
    String getIdentityType();
}
--- NEW FILE: JdoColumn.java ---
/*
 * Copyright (c) 2003
 * XDoclet Team
 * All rights reserved.
 */
package org.xdoclet.plugin.jdo.qtags.parameters;

/**
 * @author Anatol Pomozov
 */
public interface JdoColumn {
    Boolean isAllowsNull();

    String getJdbcType();

    Integer getLength();
}


-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
_______________________________________________
xdoclet-plugins-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xdoclet-plugins-commits

Reply via email to