Package org.fhsolution.eclipse.plugins.csvedit.model

Examples of org.fhsolution.eclipse.plugins.csvedit.model.AbstractCSVFile


     * @see org.eclipse.jface.viewers.IStructuredContentProvider#getElements(java.lang.Object)
     */
    public Object[] getElements(Object element) {

        if(element instanceof AbstractCSVFile) {
            AbstractCSVFile model = (AbstractCSVFile) element;
            return model.getArrayRows(false);
        }
        return null;
    }
View Full Code Here

TOP

Related Classes of org.fhsolution.eclipse.plugins.csvedit.model.AbstractCSVFile

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.