[gxml] Update documentation links



commit dc1a952f8a006db3bc4d4138d600cb530593106a
Author: Daniel Espinosa <esodan gmail com>
Date:   Fri Jul 5 23:46:32 2019 -0500

    Update documentation links

 gxml/ArrayList.vala     |  2 +-
 gxml/Collections.vala   |  4 ++--
 gxml/DomElement.vala    | 12 ++++++------
 gxml/HashMap.vala       |  2 +-
 gxml/HashPairedMap.vala |  2 +-
 gxml/HashThreeMap.vala  |  6 +++---
 gxml/Object.vala        |  2 +-
 gxml/XsdSchema.vala     |  2 +-
 8 files changed, 16 insertions(+), 16 deletions(-)
---
diff --git a/gxml/ArrayList.vala b/gxml/ArrayList.vala
index 8f62cbd..9d34259 100644
--- a/gxml/ArrayList.vala
+++ b/gxml/ArrayList.vala
@@ -1,6 +1,6 @@
 /* -*- Mode: vala; indent-tabs-mode: nil; c-basic-offset: 2; tab-width: 2 -*- */
 /*
- * GomArrayList.vala
+ * ArrayList.vala
  *
  * Copyright (C) 2016  Daniel Espinosa <esodan gmail com>
  *
diff --git a/gxml/Collections.vala b/gxml/Collections.vala
index d3e8f99..2fc6a29 100644
--- a/gxml/Collections.vala
+++ b/gxml/Collections.vala
@@ -168,7 +168,7 @@ public interface GXml.Map : GLib.Object, GXml.Collection, Traversable<DomElement
 
 /**
  * Inteface to be implemented by {@link GXml.Collection} derived classes
- * in order to provide a strings to be used in {@link GomHashPairedMap} as keys.
+ * in order to provide a strings to be used in {@link GXml.HashPairedMap} as keys.
  */
 public interface GXml.MappeableElementPairKey : GLib.Object, DomElement {
   public abstract string get_map_primary_key ();
@@ -216,7 +216,7 @@ public interface GXml.PairedMap : GLib.Object, GXml.Collection, Traversable<DomE
 
 /**
  * Inteface to beimplemented by {@link GXml.Collection} derived classes
- * in order to provide a string to be used in {@link GomHashThreeMap} as key.
+ * in order to provide a string to be used in {@link GXml.HashThreeMap} as key.
  *
  * If {@link GXml.HashMap} has set its {@link GXml.HashMap.attribute_key}
  * its value has precedence over this method.
diff --git a/gxml/DomElement.vala b/gxml/DomElement.vala
index 12424e4..1a04707 100644
--- a/gxml/DomElement.vala
+++ b/gxml/DomElement.vala
@@ -123,39 +123,39 @@ public interface GXml.DomElement : GLib.Object,
    */
   public virtual async string write_string_async (Cancellable? cancellable = null) throws GLib.Error { 
return ""; }
   /**
-   * Uses element's {@link GomDocument} to write an XML to a file, serializing it.
+   * Uses element's {@link GXml.Document} to write an XML to a file, serializing it.
    */
   public virtual void write_file (GLib.File f, Cancellable? cancellable = null) throws GLib.Error {
     owner_document.write_file (f, cancellable);
   }
   /**
-   * Uses element's {@link GomDocument} to write asynchronically an XML to a file, serializing it.
+   * Uses element's {@link GXml.Document} to write asynchronically an XML to a file, serializing it.
    */
   public virtual async void write_file_async (GLib.File f, Cancellable? cancellable = null) throws 
GLib.Error {
     yield this.owner_document.write_file_async (f);
   }
   /**
-   * Uses element's {@link GomDocument} to write an XML to a stream, serializing it.
+   * Uses element's {@link GXml.Document} to write an XML to a stream, serializing it.
    */
   public virtual void write_stream (GLib.OutputStream stream) throws GLib.Error {
     owner_document.write_stream (stream);
   }
   /**
-   * Uses element's {@link GomDocument} to write an XML to a stream, serializing it.
+   * Uses element's {@link GXml.Document} to write an XML to a stream, serializing it.
    */
   public virtual async void write_stream_async (GLib.OutputStream stream, Cancellable? cancellable = null) 
throws GLib.Error {
     yield this.owner_document.write_stream_async (stream);
   }
   /**
    * Creates an {@link GLib.InputStream} to write a string representation
-   * in XML of {@link GXml.Element} using node's {@link GomDocument}
+   * in XML of {@link GXml.Element} using node's {@link GXml.Document}
    */
   public virtual InputStream create_stream () throws GLib.Error {
     return this.owner_document.create_stream ();
   }
   /**
    * Creates an {@link GLib.InputStream} to write a string representation
-   * in XML of {@link GXml.Element} using node's {@link GomDocument}
+   * in XML of {@link GXml.Element} using node's {@link GXml.Document}
    */
   public virtual async InputStream create_stream_async (Cancellable? cancellable = null) throws GLib.Error {
     return yield this.owner_document.create_stream_async ();
diff --git a/gxml/HashMap.vala b/gxml/HashMap.vala
index fde08d9..15deb0b 100644
--- a/gxml/HashMap.vala
+++ b/gxml/HashMap.vala
@@ -125,7 +125,7 @@ public class GXml.HashMap : GXml.BaseCollection, GXml.Map {
    * if so adds a new key pointing to given index and returns true.
    *
    * Attribute should be a valid {@link DomElement} attribute or
-   * a {@link GomObject} property identified using a nick with a '::' prefix.
+   * a {@link GXml.Object} property identified using a nick with a '::' prefix.
    *
    * If there are more elements with same key, they are kept as child nodes
    * but the one in collection will be the last one to be found.
diff --git a/gxml/HashPairedMap.vala b/gxml/HashPairedMap.vala
index 07e94ce..bae8206 100644
--- a/gxml/HashPairedMap.vala
+++ b/gxml/HashPairedMap.vala
@@ -176,7 +176,7 @@ public class GXml.HashPairedMap : GXml.BaseCollection, GXml.PairedMap {
    * if so adds a new keys pointing to given index and returns true.
    *
    * Attribute should be a valid {@link DomElement} attribute or
-   * a {@link GomObject} property identified using a nick with a '::' prefix.
+   * a {@link GXml.Object} property identified using a nick with a '::' prefix.
    *
    * If there are more elements with same keys, they are kept as child nodes
    * but the one in collection will be the last one to be found.
diff --git a/gxml/HashThreeMap.vala b/gxml/HashThreeMap.vala
index a6d7e3d..0943b5a 100644
--- a/gxml/HashThreeMap.vala
+++ b/gxml/HashThreeMap.vala
@@ -1,6 +1,6 @@
 /* -*- Mode: vala; indent-tabs-mode: nil; c-basic-offset: 2; tab-width: 2 -*- */
 /*
- * GomHashThreeMap.vala
+ * HashThreeMap.vala
  *
  * Copyright (C) 2016  Daniel Espinosa <esodan gmail com>
  *
@@ -126,7 +126,7 @@ public class GXml.HashThreeMap : GXml.BaseCollection, ThreeMap {
   }
 
   /**
-   * Convenient function to initialize a {@link GomHashMap} collection, using
+   * Convenient function to initialize a {@link GXml.HashMap} collection, using
    * given element, items' type and name.
    *
    * Using this method at construction time of derived classes.
@@ -232,7 +232,7 @@ public class GXml.HashThreeMap : GXml.BaseCollection, ThreeMap {
    * if so adds a new keys pointing to given index and returns true.
    *
    * Attribute should be a valid {@link DomElement} attribute or
-   * a {@link GomObject} property identified using a nick with a '::' prefix.
+   * a {@link GXml.Object} property identified using a nick with a '::' prefix.
    *
    * If there are more elements with same keys, they are kept as child nodes
    * but the one in collection will be the last one to be found.
diff --git a/gxml/Object.vala b/gxml/Object.vala
index 60fa48b..c98758c 100644
--- a/gxml/Object.vala
+++ b/gxml/Object.vala
@@ -25,7 +25,7 @@ using GXml;
 /**
  * A GXml Object Model represents a {@link DomElement}. It has attributes
  * and children. All object's properties are handled as attributes if they are
- * basic types like integers, strings, enums and others; {@link SerializableProperty}
+ * basic types like integers, strings, enums and others; {@link Property}
  * objects are handled as attributes too. If object's attribute is a {@link GLib.Object}
  * it is handled as node's child, but only if it is a {@link GXml.Element} object,
  * other wise it is ignored when this object is used as {@link DomNode} in XML
diff --git a/gxml/XsdSchema.vala b/gxml/XsdSchema.vala
index abec94b..ae46766 100644
--- a/gxml/XsdSchema.vala
+++ b/gxml/XsdSchema.vala
@@ -278,7 +278,7 @@ public class GXml.XsdList : ArrayList {
     return -1;
   }/*
   public DomElement? XsdList.get_item (int index) {
-    return (this as GomArrayList).get_item (index);
+    return (this as GXml.ArrayList).get_item (index);
   }*/
 }
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]