function getInitConverter($prop) {
		$propId = (string) $prop;
		if (isSet($this->converters[$propId])) return $this->converters[$propId];
		
		$conv = $this->getConverter();
		$conv->initFromProp($prop);
		
		$this->converters[$propId] = $conv;
		return $conv;
	}