1 23 24 package org.objectweb.fractal.gui.repository.api; 25 26 import org.objectweb.fractal.gui.graph.model.GraphModel; 27 import org.objectweb.fractal.gui.model.Component; 28 29 32 33 public interface Repository { 34 35 43 44 Component loadComponent (String name, GraphModel graph) throws Exception ; 45 46 55 56 String storeComponent (Component component, GraphModel graph, Object hints) 57 throws Exception ; 58 } 59 | Popular Tags |