alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Scala example source code file (phonebook.scala)

This example Scala source code file (phonebook.scala) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Scala tags/keywords

acme, acme, node, node, text, text, this, this

The Scala phonebook.scala source code

package phonebook ;

object phonebook {

  val labPhoneBook = 
    <phonebook>
      <descr>
        This is the <b>phonebook of the 
        <a href="http://acme.org">ACME corporation.
      </descr>
      <entry>
        <name>Burak 
        <phone where="work">  +41 21 693 68 67
        <phone where="mobile">+41 79 602 23 23
      </entry>
    </phonebook>;

  Console.println( labPhoneBook );

  // XML is immutable - adding an element

  import scala.xml.{ Node, Text };

  def add( phonebook:Node, newEntry:Node ):Node = phonebook match {
    case <phonebook>{ ch @ _* } => 
            <phonebook>{ ch }{ newEntry }
  }

  val pb2 = 
    add( labPhoneBook, 
         <entry>
           <name>Kim 
           <phone where="work">  +41 21 111 11 11
         </entry> );

  def main(args:Array[String]) = Console.println( pb2 );

}

Other Scala examples (source code examples)

Here is a short list of links related to this Scala phonebook.scala source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.