view dstep/foundation/NSXMLDTDNode.d @ 14:89f3c3ef1fd2

Added the Foundation framework
author Jacob Carlborg <doob@me.com>
date Mon, 03 Aug 2009 15:23:15 +0200
parents
children 19885b43130e
line wrap: on
line source

/**
 * Copyright: Copyright (c) 2009 Jacob Carlborg.
 * Authors: Jacob Carlborg
 * Version: Initial created: Aug 3, 2009 
 * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0)
 */
module dstep.foundation.NSXMLDTDNode;

import dstep.foundation.NSXMLNode;
import dstep.objc.bridge.Bridge;
import dstep.objc.objc : id;

alias NSUInteger NSXMLDTDNodeKind;

enum
{
	NSXMLEntityGeneralKind = 1,
	NSXMLEntityParsedKind,
	NSXMLEntityUnparsedKind,
	NSXMLEntityParameterKind,
	NSXMLEntityPredefined,
	NSXMLAttributeCDATAKind,
	NSXMLAttributeIDKind,
	NSXMLAttributeIDRefKind,
	NSXMLAttributeIDRefsKind,
	NSXMLAttributeEntityKind,
	NSXMLAttributeEntitiesKind,
	NSXMLAttributeNMTokenKind,
	NSXMLAttributeNMTokensKind,
	NSXMLAttributeEnumerationKind,
	NSXMLAttributeNotationKind,
	NSXMLElementDeclarationUndefinedKind,
	NSXMLElementDeclarationEmptyKind,
	NSXMLElementDeclarationAnyKind,
	NSXMLElementDeclarationMixedKind,
	NSXMLElementDeclarationElementKind
}

class NSXMLDTDNode : NSXMLNode
{
	mixin ObjcWrap;

	Object initWithXMLString (NSString string)
	{
		return invokeObjcSelf!(Object, "initWithXMLString:", NSString)(string);
	}

	this (NSString string)
	{
		objcObject = Bridge.invokeObjcClassMethod!(id, "alloc")(objcClass);
		id result = Bridge.invokeObjcMethod!(id, "initWithXMLString:", NSString)(objcObject, string);

		if (result)
			objcObject = ret;

		dObject = this;
	}

	void setDTDKind (uint kind)
	{
		return invokeObjcSelf!(void, "setDTDKind:", uint)(kind);
	}

	uint DTDKind ()
	{
		return invokeObjcSelf!(uint, "DTDKind");
	}

	bool isExternal ()
	{
		return invokeObjcSelf!(bool, "isExternal");
	}

	void setPublicID (NSString publicID)
	{
		return invokeObjcSelf!(void, "setPublicID:", NSString)(publicID);
	}

	NSString publicID ()
	{
		return invokeObjcSelf!(NSString, "publicID");
	}

	void setSystemID (NSString systemID)
	{
		return invokeObjcSelf!(void, "setSystemID:", NSString)(systemID);
	}

	NSString systemID ()
	{
		return invokeObjcSelf!(NSString, "systemID");
	}

	void setNotationName (NSString notationName)
	{
		return invokeObjcSelf!(void, "setNotationName:", NSString)(notationName);
	}

	NSString notationName ()
	{
		return invokeObjcSelf!(NSString, "notationName");
	}
}