Package fr.soleil.comete.simuled.data.service

Examples of fr.soleil.comete.simuled.data.service.SimulatedKey


    }

    @Override
    protected IKey createPluginKey(IKey key) {

        SimulatedKey result = null;

        if (key != null && key instanceof SimulatedKey) {
            result = new SimulatedKey();
            SimulatedKey.registerColoration(result, ColorationLevel.ATTRIBUTE_QUALITY,
                    ((SimulatedKey) key)
                    .getExpectedSourceType());
            result.setExpectedSourceType(new GenericDescriptor(String.class));
        }

        return result;
    }
View Full Code Here


    }

    @Override
    protected IKey createPluginKey(IKey key) {

        SimulatedKey result = null;

        if (key != null && key instanceof SimulatedKey) {
            result = new SimulatedKey();
            SimulatedKey.registerFormat(result, ((SimulatedKey) key).getExpectedSourceType());
            result.setExpectedSourceType(new GenericDescriptor(String.class));
        }

        return result;
    }
View Full Code Here

TOP

Related Classes of fr.soleil.comete.simuled.data.service.SimulatedKey

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.