SIL.FieldWorks.Common.Controls.ObjectListPublisher.ObjectListPublisherMdc.GetOwnClsName C# (CSharp) Method

GetOwnClsName() public method

Override to give the name of the 'owning' property.
public GetOwnClsName ( int flid ) : string
flid int
return string
			public override string GetOwnClsName(int flid)
			{
				if (flid == ObjectListPublisher.OwningFlid)
					return m_publisher.m_owningClassName;
				else if (flid == m_publisher.FakeFlid && flid >= ObjectListPublisher.MinFakeFlid)
					return String.Empty;
				else
					return base.GetOwnClsName(flid);
			}