blob: 7e365a1a93c5deee4be78ec009041153e68764d2 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014, 2016 Orange.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*******************************************************************************/
package org.eclipse.om2m.sdt;
public class Doc {
private String text;
public Doc(final String text) {
this.text = text;
}
public String getText() {
return text;
}
@Override
public String toString() {
return "<Doc>" + text + "</Doc>";
}
}