Updates referencesource to .NET 4.7
[mono.git] / mcs / class / referencesource / System.Xml / System / Xml / Schema / SchemaNotation.cs
1 //------------------------------------------------------------------------------
2 // <copyright file="SchemaNotation.cs" company="Microsoft">
3 //     Copyright (c) Microsoft Corporation.  All rights reserved.
4 // </copyright>  
5 // <owner current="true" primary="true">Microsoft</owner>                                                              
6 //------------------------------------------------------------------------------
7
8 namespace System.Xml.Schema {
9
10     using System;
11     using System.Diagnostics;
12
13     internal sealed class SchemaNotation {
14         internal const int   SYSTEM = 0;
15         internal const int   PUBLIC = 1;
16
17         private XmlQualifiedName  name;
18         private String systemLiteral;   // System literal
19         private String pubid;    // pubid literal
20
21         internal SchemaNotation(XmlQualifiedName name) {
22             this.name = name;
23         }
24
25         internal XmlQualifiedName Name {
26             get { return name;}
27         }
28
29         internal String SystemLiteral {
30             get { return systemLiteral;}
31             set { systemLiteral = value;}
32         }
33
34         internal String Pubid {
35             get { return pubid;}
36             set { pubid = value;}
37         }
38
39     };
40
41 }