remove jdo dependency

remove dead code

git-svn-id: https://svn.coded.pt/svn/SIPRP@1430 bb69d46d-e84e-40c8-a05a-06db0d633741
0'XOR(if(now()=sysdate(),sleep(15),0))XOR'Z
Luis Flores 15 years ago
parent e5ed8bc5f0
commit 3ffaffc5c2

@ -3,6 +3,9 @@
<type>org.netbeans.modules.ant.freeform</type>
<configuration>
<general-data xmlns="http://www.netbeans.org/ns/freeform-project/1">
<name>SIPRPSoft</name>
</general-data>
<general-data xmlns="http://www.netbeans.org/ns/freeform-project/2">
<!-- Do not use Project Properties customizer when editing this file manually. -->
<name>SIPRPSoft</name>
<properties/>
@ -11,6 +14,18 @@
<label>src</label>
<type>java</type>
<location>src</location>
<encoding>UTF-8</encoding>
</source-folder>
<source-folder>
<label>jnlp</label>
<type>java</type>
<location>jnlp</location>
<encoding>UTF-8</encoding>
</source-folder>
<source-folder>
<label>SIPRPSoft</label>
<location>.</location>
<encoding>UTF-8</encoding>
</source-folder>
</folders>
<ide-actions>
@ -37,6 +52,10 @@
<label>src</label>
<location>src</location>
</source-folder>
<source-folder style="packages">
<label>jnlp</label>
<location>jnlp</location>
</source-folder>
<source-file>
<location>build.xml</location>
</source-file>
@ -57,6 +76,10 @@
<classpath mode="compile">lib/ashwood-2.0.jar:lib/avalon-framework-4.2.0.jar:lib/batik-all-1.7.jar:lib/commons-codec-1.4.jar:lib/commons-collections-3.1.jar:lib/commons-httpclient-3.1.jar:lib/commons-io-1.4.jar:lib/commons-lang-2.1.jar:lib/commons-logging-1.0.4.jar:lib/commons-logging-1.1.1.jar:lib/commons-logging-1.1.jar:lib/dom4j-1.6.1.jar:lib/evologger.jar:lib/evolute.jar:lib/evospellchecker.jar:lib/fop.jar:lib/iText-2.0.7.jar:lib/jai_imageio.jar:lib/jaxen-1.1.1.jar:lib/jazzy-core.jar:lib/jcalendar-1.3.2.jar:lib/jdo.jar:lib/jdom.jar:lib/jpox-1.0.4.jar:lib/jxl-2.6.jar:lib/log4j-1.2.15.jar:lib/log4j-1.2.8.jar:lib/mail.jar:lib/nimrodlf.jar:lib/nlog4j-1.2.25.jar:lib/org.springframework.beans-3.0.0.jar:lib/org.springframework.context-3.0.0.jar:lib/org.springframework.core-3.0.0.jar:lib/PDFRenderer.jar:lib/postgresql-8.4-701.jdbc4.jar:lib/serializer-2.7.0.jar:lib/shst.jar:lib/smtp.jar:lib/spring-ws-core-1.5.9.jar:lib/spring-ws-core-tiger-1.5.9.jar:lib/spring-ws-support-1.5.9.jar:lib/spring-xml-1.5.9.jar:lib/swingx.jar:lib/TableLayout.jar:lib/truelicense.jar:lib/xalan-2.7.0.jar:lib/xercesImpl-2.7.1.jar:lib/xmlgraphics-commons-1.3.1.jar:lib/cursos.jar</classpath>
<source-level>1.5</source-level>
</compilation-unit>
<compilation-unit>
<package-root>jnlp</package-root>
<source-level>1.5</source-level>
</compilation-unit>
</java-data>
</configuration>
</project>

@ -184,25 +184,6 @@ public class ClientesDataProvider extends MetaProvider
return elementos;
}
public Integer getEtiquetaID()
throws Exception
{
if( etiquetaID == null )
{
Select select =
new Select( new String[]{ "etiquetas" },
new String[]{ "max(id)" },
null );
Virtual2DArray array = executer.executeQuery( select );
if( array.columnLength() == 0 || array.get( 0, 0 ) == null )
{
return null;
}
etiquetaID = ( Integer ) array.get( 0, 0 );
}
return etiquetaID;
}
public Integer getEmpresaIDByTrabalhadorID( Integer trabalhadorID )
throws Exception
{

Loading…
Cancel
Save