def newLinkModel(text, relativePath):
		return Schema.Link( text=text, path=relativePath )
	def copy(self, worksheet=None):
		model = Schema.Link( text=self._model['text'], path=self._model['path'] )
		return LinkEditor( worksheet, model )