AdventureFactory.java
上传用户:hengxinggs
上传日期:2008-01-15
资源大小:212k
文件大小:1k
源码类别:

PlugIns编程

开发平台:

Java

  1. /*******************************************************************************
  2.  * Copyright (c) 2005 IBM Corporation and others.
  3.  * All rights reserved. This program and the accompanying materials
  4.  * are made available under the terms of the Eclipse Public License v1.0
  5.  * which accompanies this distribution, and is available at
  6.  * http://www.eclipse.org/legal/epl-v10.html
  7.  * 
  8.  * Contributors:
  9.  *     IBM Corporation - initial API and implementation
  10.  *******************************************************************************/
  11. package org.eclipse.jface.examples.databinding.model;
  12. public class AdventureFactory {
  13. public Catalog createCatalog() {
  14. return new Catalog();
  15. }
  16. public Category createCategory() {
  17. return new Category();
  18. }
  19. public Adventure createAdventure() {
  20. return new Adventure();
  21. }
  22. public Lodging createLodging() {
  23. return new Lodging();
  24. }
  25. public Transportation createTransportation() {
  26. return new Transportation();
  27. }
  28. public Account createAccount() {
  29. return new Account();
  30. }
  31. public Cart createCart() {
  32. return new Cart();
  33. }
  34. }