public static Renglones GetRenglones(ColumnaRenglon element)
		{
			return DslModeling::DomainRoleInfo.GetLinkedElement(element, ColumnaRenglonDomainRoleId) as Renglones;
		}
		public static void SetRenglones(ColumnaRenglon element, Renglones newRenglones)
		{
			DslModeling::DomainRoleInfo.SetLinkedElement(element, ColumnaRenglonDomainRoleId, newRenglones);
		}
		/// <summary>
		/// Constructor
		/// Creates a RenglonesHasColumnaRenglon link in the same Partition as the given Renglones
		/// </summary>
		/// <param name="source">Renglones to use as the source of the relationship.</param>
		/// <param name="target">ColumnaRenglon to use as the target of the relationship.</param>
		public RenglonesHasColumnaRenglon(Renglones source, ColumnaRenglon target)
			: base((source != null ? source.Partition : null), new DslModeling::RoleAssignment[]{new DslModeling::RoleAssignment(RenglonesHasColumnaRenglon.RenglonesDomainRoleId, source), new DslModeling::RoleAssignment(RenglonesHasColumnaRenglon.ColumnaRenglonDomainRoleId, target)}, null)
		{
		}