JP4988797B2 - オブジェクトを作成するための方法およびプログラム - Google Patents
オブジェクトを作成するための方法およびプログラム Download PDFInfo
- Publication number
- JP4988797B2 JP4988797B2 JP2009193622A JP2009193622A JP4988797B2 JP 4988797 B2 JP4988797 B2 JP 4988797B2 JP 2009193622 A JP2009193622 A JP 2009193622A JP 2009193622 A JP2009193622 A JP 2009193622A JP 4988797 B2 JP4988797 B2 JP 4988797B2
- Authority
- JP
- Japan
- Prior art keywords
- tag
- namespace
- class
- computer
- tags
- Prior art date
- Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
- Expired - Fee Related
Links
Images
Classifications
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F8/00—Arrangements for software engineering
- G06F8/30—Creation or generation of source code
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F40/00—Handling natural language data
- G06F40/10—Text processing
- G06F40/12—Use of codes for handling textual entities
- G06F40/131—Fragmentation of text files, e.g. creating reusable text-blocks; Linking to fragments, e.g. using XInclude; Namespaces
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F40/00—Handling natural language data
- G06F40/10—Text processing
- G06F40/12—Use of codes for handling textual entities
- G06F40/137—Hierarchical processing, e.g. outlines
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F40/00—Handling natural language data
- G06F40/10—Text processing
- G06F40/12—Use of codes for handling textual entities
- G06F40/14—Tree-structured documents
- G06F40/143—Markup, e.g. Standard Generalized Markup Language [SGML] or Document Type Definition [DTD]
Landscapes
- Engineering & Computer Science (AREA)
- Theoretical Computer Science (AREA)
- General Engineering & Computer Science (AREA)
- Physics & Mathematics (AREA)
- General Physics & Mathematics (AREA)
- Computational Linguistics (AREA)
- General Health & Medical Sciences (AREA)
- Health & Medical Sciences (AREA)
- Audiology, Speech & Language Pathology (AREA)
- Artificial Intelligence (AREA)
- Software Systems (AREA)
- Devices For Executing Special Programs (AREA)
- Document Processing Apparatus (AREA)
Description
<?Mapping xmlns="foo" Namespace="ACME.Widgets" Assembly="acme" ?>の形式のものである。ユーザが実装を提供する別のエンティティ(例えばw3c.org)によって制御されるあるサイトをxmlnsが指す名前空間では、タグは、
<?Mapping xmlns="http://www.w3c.org/2000/svg"
xmlnsdefinition="http://www.acme.com/svg/2000/xmlns.definition ?>の形式のものである。名前空間は、xmlns:foo=http://www.ACME/fooの形式を使用して指定することもできる。これは、名前空間「foo」を定義する。上述したように、名前空間は、別のタイプのタグで指定することもできる。例えば、名前空間は、次のMyCoolButtonタグで指定される。
<Button Text="OK" Background ="Red" Click= "RunHandler" ID="bl">
をテキスト、背景、およびクリックプロパティおよび/またはイベントを有するButtonと呼ばれるクラスとして解釈する。パーサーは、Buttonクラスのプロパティセクションにおいてテキスト、背景、およびクリック名を検索する。名前がプロパティセクションにない場合、パーサーは、イベントセクションで名前を探す。
<Button.Background>Blue</Button.Background>
</Button>
<TextBox Button.Background="Blue">
のタグは、属性Button.BackgroundがTextBoxクラスとは異なるクラスにマップされることを示す。パーサーは、ピリオドを見つけ、そのピリオドの後ろの名前によって指定されるプロパティ(例えば「Button.Background」タグの「Background」)をピリオドの前の名前によって指定されるクラス(例えば「Button」)内で検索する。
「>」、「<」および/または「&」文字を含むxamlファイル内にコードを追加するために、XMLで定義されたCDATAセクションが<def:Code>セクションに必要である。この例を以下に示す(この例では、含まれているコードは、「<」、「>」、または「&」文字を使用しないため、CDATAの括弧付けは必要ない)。
Claims (2)
- 処理ユニット及びコンピュータ読み取り可能な記憶媒体を備えるコンピュータが、複数のタグを有する拡張可能マークアップ言語ファイルを解析してオブジェクトを作成するための方法であって、
前記処理ユニットが、ネットワークに接続されたリモートコンピュータのURLディレクトリを指定するxmlns属性を有する第1のタグの前記URLディレクトリから、前記URLディレクトリをルートとする少なくとも1つの名前空間が記述された名前空間定義ファイルを検索するステップと、
前記処理ユニットが、前記名前空間定義ファイルを前記コンピュータ読み取り可能な記憶媒体にローカルに格納するステップと、
前記複数のタグのうちの前記第1のタグ以外のタグごとに、
前記処理ユニットが、前記少なくとも1つの名前空間内から前記タグの名前と一致するクラスを検索するステップと、
前記処理ユニットが、前記タグの名前と一致するクラスのオブジェクトをインスタンス化するステップと
を含むことを特徴とする方法。 - 処理ユニット及びコンピュータ読み取り可能な記憶媒体を備えるコンピュータに、複数のタグを有する拡張可能マークアップ言語ファイルを解析してオブジェクトを作成する方法を実行させるためのプログラムであって、前記方法は、
前記処理ユニットが、ネットワークに接続されたリモートコンピュータのURLディレクトリを指定するxmlns属性を有する第1のタグの前記URLディレクトリから、前記URLディレクトリをルートとする少なくとも1つの名前空間が記述された名前空間定義ファイルを検索するステップと、
前記処理ユニットが、前記名前空間定義ファイルを前記コンピュータ読み取り可能な記憶媒体にローカルに格納するステップと、
前記複数のタグのうちの前記第1のタグ以外のタグごとに、
前記処理ユニットが、前記少なくとも1つの名前空間内から前記タグの名前と一致するクラスを検索するステップと、
前記処理ユニットが、前記タグの名前と一致するクラスのオブジェクトをインスタンス化するステップと
を含むことを特徴とするプログラム。
Priority Applications (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
JP2009193622A JP4988797B2 (ja) | 2003-05-16 | 2009-08-24 | オブジェクトを作成するための方法およびプログラム |
Applications Claiming Priority (2)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
PCT/US2003/015692 WO2004107195A1 (en) | 2003-05-16 | 2003-05-16 | Declarative mechanism for defining a hierarchy of objects |
JP2009193622A JP4988797B2 (ja) | 2003-05-16 | 2009-08-24 | オブジェクトを作成するための方法およびプログラム |
Related Parent Applications (1)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
JP2004567659A Division JP2006526180A (ja) | 2003-05-16 | 2003-05-16 | オブジェクトの階層を定義するための宣言的(declative)機構 |
Publications (2)
Publication Number | Publication Date |
---|---|
JP2009283010A JP2009283010A (ja) | 2009-12-03 |
JP4988797B2 true JP4988797B2 (ja) | 2012-08-01 |
Family
ID=56291125
Family Applications (1)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
JP2009193622A Expired - Fee Related JP4988797B2 (ja) | 2003-05-16 | 2009-08-24 | オブジェクトを作成するための方法およびプログラム |
Country Status (1)
Country | Link |
---|---|
JP (1) | JP4988797B2 (ja) |
-
2009
- 2009-08-24 JP JP2009193622A patent/JP4988797B2/ja not_active Expired - Fee Related
Also Published As
Publication number | Publication date |
---|---|
JP2009283010A (ja) | 2009-12-03 |
Similar Documents
Publication | Publication Date | Title |
---|---|---|
US7464329B2 (en) | Declarative mechanism for defining a hierarchy of objects | |
US7577938B2 (en) | Data association | |
US7178101B2 (en) | Content template system | |
US20040046789A1 (en) | Extensible user interface (XUI) framework and development environment | |
US20050188350A1 (en) | Data binding | |
US8095565B2 (en) | Metadata driven user interface | |
US6753885B2 (en) | System and theme file format for creating visual styles | |
US7155705B1 (en) | Techniques for binding an application with a data exchange format based on tags in comments | |
US6678889B1 (en) | Systems, methods and computer program products for locating resources within an XML document defining a console for managing multiple application programs | |
US10061575B2 (en) | Managed execution environment for software application interfacing | |
US20050091672A1 (en) | Facilitating presentation functionality through a programming interface media namespace | |
US8413070B1 (en) | Declarative resizeable list in electronic form | |
US20100011284A1 (en) | Dynamic web page behavior | |
WO2002023336A1 (en) | Xml-based graphical user interface application development toolkit | |
KR20080033403A (ko) | 웹 페이지 렌더링 우선순위 메카니즘 | |
Phelps et al. | The multivalent browser: a platform for new ideas | |
US20040133595A1 (en) | Generation of persistent document object models | |
US8458586B2 (en) | X/HTML support for silverlight applications | |
US20100269032A1 (en) | Advanced text completion, such as for markup languages | |
KR101292982B1 (ko) | Clr 객체의 계층 구조 결정 방법, 컴퓨터 판독가능 매체, 객체를 선언적으로 정의하는 방법, clr 객체의 계층 구조 결정 메카니즘, 및 clr 객체를 선언적으로 정의하는 장치 | |
de Moura et al. | Interface Development for Hypermedia Applications in the Semantic Web. | |
US20050268233A1 (en) | System and method for mixed language editing | |
US20030222904A1 (en) | Method and system for displaying information on a user interface | |
Nebeling et al. | XCML: providing context-aware language extensions for the specification of multi-device web applications | |
JP4988797B2 (ja) | オブジェクトを作成するための方法およびプログラム |
Legal Events
Date | Code | Title | Description |
---|---|---|---|
A621 | Written request for application examination |
Free format text: JAPANESE INTERMEDIATE CODE: A621 Effective date: 20090824 |
|
A131 | Notification of reasons for refusal |
Free format text: JAPANESE INTERMEDIATE CODE: A131 Effective date: 20100115 |
|
A521 | Request for written amendment filed |
Free format text: JAPANESE INTERMEDIATE CODE: A523 Effective date: 20100309 |
|
A131 | Notification of reasons for refusal |
Free format text: JAPANESE INTERMEDIATE CODE: A131 Effective date: 20100525 |
|
A521 | Request for written amendment filed |
Free format text: JAPANESE INTERMEDIATE CODE: A523 Effective date: 20100825 |
|
A02 | Decision of refusal |
Free format text: JAPANESE INTERMEDIATE CODE: A02 Effective date: 20100917 |
|
RD13 | Notification of appointment of power of sub attorney |
Free format text: JAPANESE INTERMEDIATE CODE: A7433 Effective date: 20110118 |
|
A521 | Request for written amendment filed |
Free format text: JAPANESE INTERMEDIATE CODE: A821 Effective date: 20110118 |
|
A01 | Written decision to grant a patent or to grant a registration (utility model) |
Free format text: JAPANESE INTERMEDIATE CODE: A01 |
|
A61 | First payment of annual fees (during grant procedure) |
Free format text: JAPANESE INTERMEDIATE CODE: A61 Effective date: 20120426 |
|
R150 | Certificate of patent or registration of utility model |
Free format text: JAPANESE INTERMEDIATE CODE: R150 |
|
FPAY | Renewal fee payment (event date is renewal date of database) |
Free format text: PAYMENT UNTIL: 20150511 Year of fee payment: 3 |
|
S111 | Request for change of ownership or part of ownership |
Free format text: JAPANESE INTERMEDIATE CODE: R313113 |
|
R350 | Written notification of registration of transfer |
Free format text: JAPANESE INTERMEDIATE CODE: R350 |
|
R250 | Receipt of annual fees |
Free format text: JAPANESE INTERMEDIATE CODE: R250 |
|
R250 | Receipt of annual fees |
Free format text: JAPANESE INTERMEDIATE CODE: R250 |
|
R250 | Receipt of annual fees |
Free format text: JAPANESE INTERMEDIATE CODE: R250 |
|
LAPS | Cancellation because of no payment of annual fees |