Arredamento negozi: come trovare negozi di arredamenti
Come Trovare Negozi di Arredamento per Negozi.
Come Scegliere l'Arredamento per un Negozio.
Scopri come trovare i migliori negozi di arredamento per negozi, ottimizzando la tua esperienza d'acquisto. Questo articolo offre consigli pratici e strategie per selezionare i fornitori ideali, garantendo un design accattivante e funzionale per il tuo spazio commerciale. Massimizza il tuo investimento con scelte consapevoli!
Trova professionisti vicino a te
Trova professionisti
/*
* Copyright 2017 Young Digital Planet S.A.
*
* 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
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package eu.ydp.empiria.player.client.controller.feedback.structure.action;
import com.peterfranza.gwt.jaxb.client.parser.utils.XMLContent;
import eu.ydp.empiria.player.client.controller.feedback.FeedbackMark;
import eu.ydp.empiria.player.client.controller.feedback.structure.action.ShowTextAction;
import java.util.List;
public class ShowTextActionBean {
private String text;
private List xmlText;
private FeedbackMark mark;
public ShowTextActionBean() {
}
public ShowTextActionBean(ShowTextAction action) {
this.text = action.getText();
this.xmlText = action.getXmlText();
this.mark = action.getMark();
}
public void setText(String text) {
this.text = text;
}
public void setXmlText(List xmlText) {
this.xmlText = xmlText;
}
public void setMark(FeedbackMark mark) {
this.mark = mark;
}
public String getText() {
return text;
}
public List getXmlText() {
return xmlText;
}
public FeedbackMark getMark() {
return mark;
}
}