Examples of GenericDescriptor


Examples of fr.soleil.data.service.GenericDescriptor

        return ITreeNodeTarget.class;
    }

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

Examples of fr.soleil.data.service.GenericDescriptor

        }
    }

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

Examples of fr.soleil.data.service.GenericDescriptor

    @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

Examples of fr.soleil.data.service.GenericDescriptor

        }
    }

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

Examples of fr.soleil.data.service.GenericDescriptor

        return IBooleanComponent.class;
    }

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

Examples of fr.soleil.data.service.GenericDescriptor

        return IBooleanTarget.class;
    }

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

Examples of fr.soleil.data.service.GenericDescriptor

        return ITextMatrixTarget.class;
    }

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

Examples of fr.soleil.data.service.GenericDescriptor

        return INumberMatrixTarget.class;
    }

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

Examples of fr.soleil.data.service.GenericDescriptor

    @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

Examples of fr.soleil.data.service.GenericDescriptor

        return INumberComponent.class;
    }

    @Override
    protected GenericDescriptor getTargetType() {
        return new GenericDescriptor(Number.class);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.