/* * DBeaver - Universal Database Manager * Copyright (C) 2010-2017 Serge Rider (serge@jkiss.org) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.jkiss.dbeaver.model.edit.prop; import org.jkiss.dbeaver.model.DBPObject; import org.jkiss.dbeaver.model.impl.edit.DBECommandAbstract; import java.util.HashMap; import java.util.Map; /** * Composite object command */ public abstract class DBECommandComposite<OBJECT_TYPE extends DBPObject, HANDLER_TYPE extends DBEPropertyHandler<OBJECT_TYPE>> extends DBECommandAbstract<OBJECT_TYPE> { private Map<Object, Object> properties = new HashMap<>(); protected DBECommandComposite(OBJECT_TYPE object, String title) { super(object, title); } public Map<Object, Object> getProperties() { return properties; } public Object getProperty(Object id) { return properties.get(id); } public Object getProperty(HANDLER_TYPE handler) { return properties.get(handler.getId()); } public void addPropertyHandler(HANDLER_TYPE handler, Object value) { properties.put(handler.getId(), value); } // public static <OBJECT_TYPE extends DBPObject> DBECommandComposite getFromContext(DBECommandContext context, OBJECT_TYPE object, DBEPropertyHandler<OBJECT_TYPE> handler) // { // String compositeName = object.toString() + PROP_COMPOSITE_COMMAND; // DBECommandComposite compositeCommand = (DBECommandComposite)context.getUserParams().get(compositeName); // if (compositeCommand == null) { // compositeCommand = handler.createCompositeCommand(object); // context.getUserParams().put(compositeName, compositeCommand); // } // return compositeCommand; // } }