blob: 00a8fbb3261cc4767434a8f4d8c4f4eac8bbd92f [file] [log] [blame]
/**********************************************************************
* This file is part of "Object Teams Development Tooling"-Software
*
* Copyright 2004, 2010 Technical University Berlin, Germany.
*
* 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
* $Id$
*
* Please visit http://www.eclipse.org/objectteams for updates and contact.
*
* Contributors:
* Technical University Berlin - Initial API and implementation
**********************************************************************/
package org.eclipse.objectteams.example.atm;
/**
* This class represents a very simple bank, only characterized by its name.
*
*/
public class Bank {
private String name;
public Bank(String _name) {
name = _name;
}
public String getName() {
return name;
}
}