Package fr.soleil.lib.flyscan.model.constraints.hierarchical

Examples of fr.soleil.lib.flyscan.model.constraints.hierarchical.HierarchicalConstraint


                                currentObject = new Hook(currentSection);
                            } else if (name.equals(ParsingUtil.MONITOR)) {
                                currentObject = new Monitor(currentSection);
                            } else if (name.startsWith(ParsingUtil.CONSTRAINT)) {
                                // Hierarchical constraint case processing
                                currentObject = new HierarchicalConstraint(currentSection);
                                String[] parts = name.split("/");
                                if (parts.length == 3) {
                                    String type = parts[1].trim();
                                    String actorName = parts[2].trim();
                                    ((HierarchicalConstraint) currentObject).setActorName(actorName);
View Full Code Here

TOP

Related Classes of fr.soleil.lib.flyscan.model.constraints.hierarchical.HierarchicalConstraint

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.