/******************************************************************************* * Copyright (c) 2006-2010 eBay Inc. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 *******************************************************************************/ package org.ebayopensource.turmeric.eclipse.services.ui.views; import org.ebayopensource.turmeric.eclipse.ui.UIConstants; /** * The Class ServicesViewBaseModel. * * @author smathew */ public class ServicesViewBaseModel { private String name; /** * Gets the image name. * * @return the image name */ public static String getImageName() { return UIConstants.IMAGE_ECLIPSE; } /** * Gets the name. * * @return the name */ public String getName() { return name; } /** * Sets the name. * * @param name the new name */ public void setName(String name) { this.name = name; } }