blob: 2da82845588f10b89535300770f890e2880831a1 [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2015 CEA LIST and others.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* CEA LIST - Initial API and implementation
*
*****************************************************************************/
package org.eclipse.papyrus.tools.uml.graph.uml2pseudograph.client;
import java.util.Date;
import org.eclipse.papyrus.tools.uml.graph.uml2pseudograph.api.Uml2GraphServices;
import org.eclipse.papyrus.tools.uml.graph.uml2pseudograph.core.Uml2PseudoGraph;
import org.eclipse.papyrus.tools.uml.graph.uml2pseudograph.util.Uml2PseudoGraphUtils;
public class Uml2PseudoGraphClient {
public static void main(String[] args) {
//Utils method
Uml2PseudoGraphUtils<String> myUml2PseudoGraphUtils4String = new Uml2PseudoGraphUtils<String>();
Uml2PseudoGraph myUml2PseudoGraph = new Uml2PseudoGraph();
//myUml2PseudoGraphUtils4String.display(myUml2PseudoGraph.geteClassName2DirectLinkedEClassNamesMap(), true);
//myUml2PseudoGraphUtils4String.display(myUml2PseudoGraph.geteClassName2ReverseLinkedEClassNamesMap(), false);
Uml2GraphServices.dumpGuessMyPotentialDirectActions("/export/home/flefevre/shared/actions"+((new Date()).getTime())+".txt");
}
}