Package de.sebastianbenz.task.util

Source Code of de.sebastianbenz.task.util.Links

package de.sebastianbenz.task.util;

import de.sebastianbenz.task.Link;
import de.sebastianbenz.task.TaskFactory;

public class Links {

  public static Link create(String description, String url, int offset,
      int length) {
    Link link = TaskFactory.eINSTANCE.createLink();
    link.setLength(length);
    link.setOffset(offset);
    link.setDescription(description);
    link.setUrl(url);
    return link;
  }

}
TOP

Related Classes of de.sebastianbenz.task.util.Links

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.