Examples of IKey


Examples of fr.soleil.data.service.IKey

    }

    protected String printDataSource(final AbstractDataSource<?> source) {
        final StringBuilder result = new StringBuilder();
        result.append(source.getClass().getSimpleName() + "-" + source.hashCode());
        final IKey key = source.getOriginDescriptor();
        if (key != null) {
            result.append("(");
            result.append(key.getInformationKey());
            result.append(")");
            result.append("\n\t");
        }
        return result.toString();
    }
View Full Code Here

Examples of fr.soleil.data.service.IKey

    }

    protected String printDataSource(final AbstractDataSource<?> source) {
        final StringBuilder result = new StringBuilder();
        result.append(source.getClass().getSimpleName() + "-" + source.hashCode());
        final IKey key = source.getOriginDescriptor();
        if (key != null) {
            result.append("(");
            result.append(key.getInformationKey());
            result.append(")");
            result.append("\n\t");
        }
        return result.toString();
    }
View Full Code Here

Examples of fr.soleil.data.service.IKey

    }

    protected String printDataSource(final AbstractDataSource<?> source) {
        final StringBuilder result = new StringBuilder();
        result.append(source.getClass().getSimpleName() + "-" + source.hashCode());
        final IKey key = source.getOriginDescriptor();
        if (key != null) {
            result.append("(");
            result.append(key.getInformationKey());
            result.append(")");
            result.append("\n\t");
        }
        return result.toString();
    }
View Full Code Here

Examples of fr.soleil.data.service.IKey

    }

    protected String printDataSource(AbstractDataSource<?> source) {
        StringBuilder result = new StringBuilder();
        result.append(source.getClass().getSimpleName() + "-" + source.hashCode());
        IKey key = source.getOriginDescriptor();
        if (key != null) {
            result.append("(");
            result.append(key.getInformationKey());
            result.append(")");
            result.append("\n\t");
        }
        return result.toString();
    }
View Full Code Here

Examples of fr.soleil.data.service.IKey

                    result.append(targetListener.getClass().getSimpleName() + "-"
                            + targetListener.hashCode());
                }
            }

            IKey key = cometeListenerRelations.get(target);

            if (key != null && !listenableTargetMap.isEmpty()) {

                result.append(", ");
                ListenableTarget<?> sourceListener = listenableTargetMap.get(key);
                if (sourceListener != null) {
                    result.append(sourceListener.getClass().getSimpleName() + "-"
                            + sourceListener.hashCode());
                }

                result.append("\n\tbetween : ");
                result.append(target.getClass().getSimpleName() + "-" + target.hashCode());
                result.append(" <=> ");
                result.append(key.getInformationKey());
            }
            result.append("\n");
        }
        return result.toString();
    }
View Full Code Here

Examples of fr.soleil.data.service.IKey

                        @SuppressWarnings("unchecked")
                        AbstractCometeBox<ITarget> box = (AbstractCometeBox<ITarget>) params
                                .getBox();
                        ITarget widget = params.getWidget();
                        IKey key = params.getKey();

                        if (box.connectWidget(widget, key, false)) {
                            if (widget instanceof IComponent) {
                                IComponent iComponent = (IComponent) widget;
                                iComponent.setEnabled(params.isEnabled());
View Full Code Here

Examples of fr.soleil.data.service.IKey

                for (ITargetListener<?> targetListener : targetListeners) {
                    result.append(targetListener.getClass().getSimpleName() + "-"
                            + targetListener.hashCode());
                }

                IKey key = cometeListenerRelations.get(target);
                if (key != null && !listenableTargetMap.isEmpty()) {
                    result.append(", ");
                    ListenableTarget<?> sourceListener = listenableTargetMap.get(key);
                    if (sourceListener != null) {
                        result.append(sourceListener.getClass().getSimpleName() + "-"
                                + sourceListener.hashCode());
                    }

                    result.append("\n\tbetween : ");
                    result.append(target.getClass().getSimpleName() + "-" + target.hashCode());
                    result.append(" <=> ");
                    result.append(key.getInformationKey());
                }
                result.append("\n");
            }
        }
        return result.toString();
View Full Code Here

Examples of fr.soleil.data.service.IKey

    }

    protected String printDataSource(final AbstractDataSource<?> source) {
        final StringBuilder result = new StringBuilder();
        result.append(source.getClass().getSimpleName() + "-" + source.hashCode());
        final IKey key = source.getOriginDescriptor();
        if (key != null) {
            result.append("(");
            result.append(key.getInformationKey());
            result.append(")");
            result.append("\n\t");
        }
        return result.toString();
    }
View Full Code Here

Examples of fr.soleil.data.service.IKey

    }

    protected String printDataSource(final AbstractDataSource<?> source) {
        final StringBuilder result = new StringBuilder();
        result.append(source.getClass().getSimpleName() + "-" + source.hashCode());
        final IKey key = source.getOriginDescriptor();
        if (key != null) {
            result.append("(");
            result.append(key.getInformationKey());
            result.append(")");
            result.append("\n\t");
        }
        return result.toString();
    }
View Full Code Here

Examples of fr.soleil.data.service.IKey

        }
    }

    @Override
    protected void doInit() {
        IKey key = initKey();
        initSource(key);
        initQualityLink(key);
        initFormatLink(key);
        setRefreshingStrategy(RefreshingStrategy.GROUPED_BY_REFRESHING_PERIOD);
        updateRefreshingStrategy();
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.