2
Fork 0

moved package to temparory org.x4o.vasc.etc

This commit is contained in:
Willem Cazander 2011-12-30 00:09:01 +01:00
parent 3d6ceff732
commit cc6331b7fe
322 changed files with 2032 additions and 1750 deletions

View file

@ -24,7 +24,7 @@
* should not be interpreted as representing official policies, either expressed or implied, of IDCA.
*/
package com.idcanet.vasc;
package org.x4o.vasc;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
@ -35,8 +35,9 @@ import javax.swing.JMenuBar;
import javax.swing.JMenuItem;
import javax.swing.JPanel;
import com.idcanet.vasc.core.VascEntry;
import com.idcanet.vasc.frontends.swing.SwingVascFrontend;
import org.x4o.vasc.core.VascEntry;
import org.x4o.vasc.frontends.swing.SwingVascFrontend;
import junit.framework.TestCase;

View file

@ -25,22 +25,23 @@
* should not be interpreted as representing official policies, either expressed or implied, of IDCA.
*/
package com.idcanet.vasc;
package org.x4o.vasc;
import java.util.Date;
import org.x4o.vasc.annotations.VascDefaultValue;
import org.x4o.vasc.annotations.VascEntry;
import org.x4o.vasc.annotations.VascI18n;
import org.x4o.vasc.annotations.VascModelReference;
import org.x4o.vasc.annotations.VascStyle;
import org.x4o.vasc.validators.VascDateFuture;
import org.x4o.vasc.validators.VascObjectNotNull;
import org.x4o.vasc.validators.VascStringLength;
//import org.hibernate.validator.NotNull;
//import org.hibernate.validator.Max;
import com.idcanet.vasc.annotations.VascEntry;
import com.idcanet.vasc.annotations.VascStyle;
import com.idcanet.vasc.annotations.VascDefaultValue;
import com.idcanet.vasc.annotations.VascModelReference;
import com.idcanet.vasc.annotations.VascI18n;
import com.idcanet.vasc.validators.VascDateFuture;
import com.idcanet.vasc.validators.VascObjectNotNull;
import com.idcanet.vasc.validators.VascStringLength;
/**
* TestModel

View file

@ -24,23 +24,24 @@
* should not be interpreted as representing official policies, either expressed or implied, of IDCA.
*/
package com.idcanet.vasc;
package org.x4o.vasc;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import com.idcanet.vasc.core.AbstractVascBackend;
import com.idcanet.vasc.core.VascBackendState;
import com.idcanet.vasc.core.VascEntry;
import com.idcanet.vasc.core.VascEntryField;
import com.idcanet.vasc.core.VascException;
import com.idcanet.vasc.core.entry.VascEntryFieldValue;
import com.idcanet.vasc.core.entry.VascEntryRecordCreator;
import com.idcanet.vasc.core.ui.VascSelectItem;
import com.idcanet.vasc.core.ui.VascSelectItemModel;
import com.idcanet.vasc.impl.entry.BeanPropertyVascEntryFieldValue;
import com.idcanet.vasc.impl.entry.BeanVascEntryRecordCreator;
import org.x4o.vasc.core.AbstractVascBackend;
import org.x4o.vasc.core.VascBackendState;
import org.x4o.vasc.core.VascEntry;
import org.x4o.vasc.core.VascEntryField;
import org.x4o.vasc.core.VascException;
import org.x4o.vasc.core.entry.VascEntryFieldValue;
import org.x4o.vasc.core.entry.VascEntryRecordCreator;
import org.x4o.vasc.core.ui.VascSelectItem;
import org.x4o.vasc.core.ui.VascSelectItemModel;
import org.x4o.vasc.impl.entry.BeanPropertyVascEntryFieldValue;
import org.x4o.vasc.impl.entry.BeanVascEntryRecordCreator;
/**
*

View file

@ -24,34 +24,35 @@
* should not be interpreted as representing official policies, either expressed or implied, of IDCA.
*/
package com.idcanet.vasc;
package org.x4o.vasc;
import java.io.File;
import java.io.FileOutputStream;
import java.lang.reflect.Method;
import java.util.Locale;
import com.idcanet.vasc.core.VascBackend;
import com.idcanet.vasc.core.VascBackendControllerLocal;
import com.idcanet.vasc.core.VascController;
import com.idcanet.vasc.core.VascEntry;
import com.idcanet.vasc.core.VascEntryField;
import com.idcanet.vasc.core.VascException;
import com.idcanet.vasc.core.VascFrontendData;
import com.idcanet.vasc.impl.DefaultVascBackedEntryFinalizer;
import com.idcanet.vasc.impl.DefaultVascFactory;
import com.idcanet.vasc.impl.DefaultVascFrontendData;
import com.idcanet.vasc.impl.DefaultVascFrontendHelper;
import com.idcanet.vasc.impl.VascBackendProxyPaged;
import com.idcanet.vasc.impl.VascBackendProxySearch;
import com.idcanet.vasc.impl.VascBackendProxySort;
import com.idcanet.vasc.impl.actions.AddRowAction;
import com.idcanet.vasc.impl.actions.CSVExportGlobalAction;
import com.idcanet.vasc.impl.actions.DeleteRowAction;
import com.idcanet.vasc.impl.actions.EditRowAction;
import com.idcanet.vasc.impl.actions.RefreshDataGlobalAction;
import com.idcanet.vasc.impl.actions.XMLExportGlobalAction;
import com.idcanet.vasc.impl.x4o.VascParser;
import org.x4o.vasc.core.VascBackend;
import org.x4o.vasc.core.VascBackendControllerLocal;
import org.x4o.vasc.core.VascController;
import org.x4o.vasc.core.VascEntry;
import org.x4o.vasc.core.VascEntryField;
import org.x4o.vasc.core.VascException;
import org.x4o.vasc.core.VascFrontendData;
import org.x4o.vasc.impl.DefaultVascBackedEntryFinalizer;
import org.x4o.vasc.impl.DefaultVascFactory;
import org.x4o.vasc.impl.DefaultVascFrontendData;
import org.x4o.vasc.impl.DefaultVascFrontendHelper;
import org.x4o.vasc.impl.VascBackendProxyPaged;
import org.x4o.vasc.impl.VascBackendProxySearch;
import org.x4o.vasc.impl.VascBackendProxySort;
import org.x4o.vasc.impl.actions.AddRowAction;
import org.x4o.vasc.impl.actions.CSVExportGlobalAction;
import org.x4o.vasc.impl.actions.DeleteRowAction;
import org.x4o.vasc.impl.actions.EditRowAction;
import org.x4o.vasc.impl.actions.RefreshDataGlobalAction;
import org.x4o.vasc.impl.actions.XMLExportGlobalAction;
import org.x4o.vasc.impl.x4o.VascParser;
/**