blob: 16efd3d5d36ab3e800fed0e640d9788032d21d6a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 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.xwt.tests.databinding.datacontext;
public class Factory {
public static Person createPerson() {
Person person = new Person();
person.setFirstName("Luc");
person.setLastName("GAMEL");
return person;
}
public static Company createCompany() {
Company company = new Company();
company.setName("Soyatec");
company.setManager(createPerson());
return company;
}
}