
org.eclipse.dirigible.database.ds.model.DataStructureSchemaModel Maven / Gradle / Ivy
/**
* Copyright (c) 2010-2018 SAP 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:
* SAP - initial API and implementation
*/
package org.eclipse.dirigible.database.ds.model;
import java.util.ArrayList;
import java.util.List;
/**
* The schema model representation.
*/
public class DataStructureSchemaModel extends DataStructureContentModel {
private List tables = new ArrayList();
private List views = new ArrayList();
/**
* Get the tables
* @return the tables list
*/
public List getTables() {
return tables;
}
/**
* Get the views
* @return the views list
*/
public List getViews() {
return views;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy