/******************************************************************************* * Copyright (c) 2005, 2014 IBM Corporation 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: * IBM Corporation - initial API and implementation *******************************************************************************/ package org.eclipse.jface.examples.databinding.model; public class AdventureFactory { public Catalog createCatalog() { return new Catalog(); } public Category createCategory() { return new Category(); } public Adventure createAdventure() { return new Adventure(); } public Lodging createLodging() { return new Lodging(); } public Transportation createTransportation() { return new Transportation(); } public Account createAccount() { return new Account(); } public Cart createCart() { return new Cart(); } }