Package fr.soleil.data.service

Examples of fr.soleil.data.service.GenericDescriptor


        return ITreeNodeTarget.class;
    }

    @Override
    protected GenericDescriptor getTargetType() {
        return new GenericDescriptor(ITreeNode.class);
    }
View Full Code Here


        }
    }

    @Override
    public GenericDescriptor getDataType() {
        return new GenericDescriptor(String[][].class);
    }
View Full Code Here

    @SuppressWarnings("unchecked")
    @Override
    public boolean isTargetAssignable(ITarget target) {
        boolean result = false;
        if (target != null && target instanceof CometeCaps) {
            GenericDescriptor targetDesc = ((CometeCaps) target).getDataType();
            result = getTargetType().isAssignableFrom(targetDesc);
        }
        return result;
    }
View Full Code Here

        }
    }

    @Override
    public GenericDescriptor getDataType() {
        return new GenericDescriptor(Number.class);
    }
View Full Code Here

        return IBooleanComponent.class;
    }

    @Override
    protected GenericDescriptor getTargetType() {
        return new GenericDescriptor(Boolean.class);
    }
View Full Code Here

        return IBooleanTarget.class;
    }

    @Override
    protected GenericDescriptor getTargetType() {
        return new GenericDescriptor(Boolean.class);
    }
View Full Code Here

        return ITextMatrixTarget.class;
    }

    @Override
    protected GenericDescriptor getTargetType() {
        return new GenericDescriptor(String[][].class);
    }
View Full Code Here

        return INumberMatrixTarget.class;
    }

    @Override
    protected GenericDescriptor getTargetType() {
        return new GenericDescriptor(Object[].class);
    }
View Full Code Here

    @SuppressWarnings("unchecked")
    @Override
    public boolean isTargetAssignable(ITarget target) {
        boolean result = false;
        if (target != null && target instanceof CometeCaps) {
            GenericDescriptor targetDesc = ((CometeCaps) target).getDataType();
            result = getTargetType().isAssignableFrom(targetDesc);
        }
        return result;
    }
View Full Code Here

        return INumberComponent.class;
    }

    @Override
    protected GenericDescriptor getTargetType() {
        return new GenericDescriptor(Number.class);
    }
View Full Code Here

TOP

Related Classes of fr.soleil.data.service.GenericDescriptor

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.