/******************************************************************************* * <copyright> * * Copyright (c) 2005, 2011 SAP AG. * 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 AG - initial API, implementation and documentation * * </copyright> * *******************************************************************************/ package org.eclipse.graphiti.func; public class Proposal implements IProposal { private String text; private Object object; public Proposal(String text) { super(); this.text = text; } public Proposal(String text, Object object) { this(text); setObject(object); } public Object getObject() { return object; } public String getText() { return text; // + " - " + getObject(); // for tests } public void setObject(Object object) { this.object = object; } public void setText(String text) { this.text = text; } public static Proposal[] textsToProposals(String[] texts) { Proposal[] ret = new Proposal[texts.length]; for (int i = 0; i < ret.length; i++) { ret[i] = new Proposal(texts[i]); } return ret; } public static String[] proposalsToTexts(IProposal[] proposals) { String[] ret = new String[proposals.length]; for (int i = 0; i < ret.length; i++) { ret[i] = proposals[i].getText(); } return ret; } }