Package org.zkoss.ganttz.data.DependencyType

Examples of org.zkoss.ganttz.data.DependencyType.Point


                    : graph.outgoingEdgesOf(this.task);
        }

        public boolean sendsModificationsThrough(D dependency) {
            V source = getDependencySource(dependency);
            Point dependencySourcePoint = getSourcePoint(adapter
                    .getType(dependency));

            return source.equals(task)
                    && (!isContainer || pointsModified
                            .contains(dependencySourcePoint));
View Full Code Here


            return sourceAndDestination[isScheduleForward() ? 0 : 1];
        }

        private boolean receivesModificationsThrough(D dependency) {
            V destination = getDependencyDestination(dependency);
            Point destinationPoint = getDestinationPoint(adapter
                    .getType(dependency));

            return destination.equals(task) && entryPoint == destinationPoint;
        }
View Full Code Here

TOP

Related Classes of org.zkoss.ganttz.data.DependencyType.Point

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.