Sunday, February 5, 2012

Adobe Photoshop Keys - CS5 Keys


1192-1061-2350-5998-2630-2778
1192-1317-3371-8571-9999-2778
1192-1164-8738-8708-0711-6961
1192-1584-8135-6496-8692-5093
1192-1609-9760-3490-2458-8610
1192-1921-1954-5890-9202-4790

-----------

1330-1036-2793-5476-2605-5729
1330-1193-9982-0310-7670-2199
1330-1470-0441-6829-3063-2553

Photoshop Tutorial-How to Draw an Ultra Clean Apple Keyboard in Photoshop


How to Draw an Ultra Clean Apple Keyboard in Photoshop


Step 1

Let's start off by creating a New Document of any size. For this tutorial, I used a large 952 x 412 document.
step-001

Step 2

Unlock your Background layer by double clicking the lock icon. Grab your Paint Bucket Tool and fill it with the color #313338. Now, using your Rectangle Shape Tool, make a wide rectangle in the center of the canvas. Name this layer Border.
step-002

Step 3

Turn down the Fill of your Border layer to 0%; double click it to bring up the Layer Styles window and apply the following effects.
step-003

step-004a
Your outcome should result in the following.
step-004b

Step 4

Duplicate your Border layer and name it Edge. After you've done so, apply the following layer effects.
step-004c

Step 5

Now, move your Edge layer a few spaces down using the Move Tool. You should have the following.
step-004d

Step 6

Duplicate your Border layer once again. Then move it above all the other layers and rename it Keyboard Base. Now we'll apply the last of the effects to the keyboard.
step-004e

step-005a

step-005b

step-005c
Currently, your outcome should look like this.
step-005d

Step 7

Now that you're done with the base of your keyboard, let's make some buttons for the keyboard. Since it's the same step for each button, you just need to make one and then duplicate the step for each additional one. To start, grab your Rectangle Tool and create a small rectangle at the top left of the keyboard. Name this layer button. This first shape will be your Escape/Esc key. Double click the layer and add the following effects.
step-005e

step-006a

step-006b

step-006c

step-006d

step-006e
Your key/button should look like this now! Looks pretty good, doesn't it?
step-007a

Step 8

Now, duplicate your "button" layer and place it in the appropriate places on the keyboard. All together, there should be 6 rows of keys. For some of the keys, you'll need to stretch your "button" layer to form the command button, space bar, etc. To do this, select the layer you wish to re-size and go to Edit > Free Transform. From there, hit shift and scale your layer to your desired height/width.
step-007b

Step 9

If you've completed all the above steps with success, you are basically done with your Apple Wireless Keyboard! You can now continue to add the numerals/letters on each key. When you're done doing so, you should have a pretty neat looking keyboard!

Download the PSD

Apple Keyboard.zip | 0.16 MB
Download from Website

Final Results

final-results[1]

.Net tutorial for Beginners

Easy .Net tutorial for Beginners
To open tutorial in PDF format click HERE, you can also download it free. 

Friday, February 3, 2012

Struts Tutorials


Struts 2.2.1 - Struts 2.2.1 Tutorial

The Struts 2.2.1 framework is released with many new features. Here in this tutorial you will find detailed explanation of Struts 2.2.1 framework.
Struts 2.2.1 framework is based on MVC design pattern. It is one of the most used frameworks to create web applications using MVC design pattern in Java technology.  Struts 2.2.1 provides Ajax support and can be used to develop Web 2.0 applications.
Struts 2.2.1 framework is highly extensible framework and also supports the plugins and interceptors for advance programming.
In this section we are providing complete tutorial on Struts 2.2.1 framework.
Prerequisites for Struts 2.2.1 tutorial
You should have prior development experience in JSP, Servlet and good understanding of Core Java. Good understanding to web application and must have prior web application development experience.
Let's get started with Struts 2.2.1
Beginning Struts 2.2.1
  1. Features of Struts 2.2.1
  2. Understanding MVC design pattern
  3. Developing Hello World application
  4. Running and testing the example
  5. Struts 2 hello world application using annotation
  6. Running and testing the example
  7. Advance Struts Action
Struts Action
  1. Introduction to Action interface
  2. Introduction to ModelDriven interface with example
  3. Example of ActionSupport class
  4. Implementing Actions in Struts 2
  5. Chaining Actions in Struts
  6. Configuring Actions in Struts application
Login Form Application
  1. About Struts 2.2.1 Login application
  2. Create JSP file
  3. Create Action class
  4. Add configuration in struts.xml file
  5. Build and test application
Results
  1. Result interface in Struts 2.2.1
  2. Chain Result Example
  3. Dispatcher Result Example
  4. HttpHeader Result Example
  5. Redirect Result Example
  6. Redirect Action Result Example
  7. Stream Result example
  8. Introduction to XSL Result and its example
  9. Learn how to use PlainText Result
  10. Tiles Result Example in Struts 2.2.1
  11. Introduction to PreResultListener
  12. How to work with Multipage Forms in Struts 2.2.1
  13. Pagination example in Struts 2.2.1
Validation in Struts 2.2.1 application
  1. Introduction to Validation Interceptor
  2. Client side Validation
  3. Server side Validation
  4. AJAX Validation
  5. Using Field Validators
  6. Using Non Field Validators
  7. Login form validation example
Struts 2.2.1 Tags
  1. Type of Struts 2.2.1 tags
  2. Example of Generic Tags
  3. Example of UI Tags
  4. Example of Themes and Templates
  5. Example of Ajax Tags
  6. Example of OGNL
  7. Example of Tabular inputs
  8. How to use Checkboxes in Struts 2.2.1 applications
  9. Example of Iterator tag in Struts 2.2.1
  10. Learn how to format dates and numbers in Struts 2.2.1
  11. Skinning example in Struts 2.2.1

Java Tutotials: Java list iterators


Tutorial Details:
In this tutorial you will learn how to iterate data from a list
Related Tutorials:
Displaying 1 - 50 of about 22979 Related Tutorials.
List iterator java example
Java List Iterator is an interface in the collection framework. List is an interface. Its all elements can be traversed by the IteratorJava List Iterator has methods hasNext() and next() for traversing . Java List Iterator
 
Java List Iterator 
. It has methods hasNext() and next(). Example of Java List Iterator import java.util.*; public class iterator { public static void main(String... Java List Iteratoris an interface in the collection framework
 
Java List Iterator Example
Java List Iterator Example In Java Collection framework every classes provides theiterator() method, that returns the objects of iterator which used..."); Now call theiterator() method of list and store the result into the Iterator
 

Java Iterator with Example
hasNext() and next(). Java Iterator Example import java.util.*; public class iterator{ public static void main(String[] args... Iterator is an interface in the collection framework It traverses through
 
Java Array Iterator with Example
Java Array Iterator is an interface in the collection framework. Java... of theIterator interface to manipulate more than one ArrayList Java Array Iterator withExample import java.util.*; public class arrayIterator
 

Java arraylist iterator
in the for loop. It is clear by the given exampleExample of JavaArraylist... java.util.List; public class List_for_iterator {     public static void main... ArrayList has iterator() method.Using iterator() method
 
Iterator Java Tutorial
methods hasNext() and next(). List, Set interface has iterator() methods . Exampleof Java Iterator import java.util.*; public class iterator1... Java Iterator is an interface in the collection framework It traverses
 
Velocity Iterator Tool Example
Velocity Iterator Tool Example       This Example shows you how to use Iterator in velocity ... the list with character $. #foreach($items in $item): This is just same
 
Java Generic Iterator 
Java Generic Iterator is the new feature added to the jdk1.5. It is used.... It is used with classes, methods and interfaces. Java Generics Iterator Example import java.util.ArrayList; import java.util.Iterator; public
 
Java For loop Iterator 
Iterator can be used with the for loop also. Initialization of the Iterator is done before the for loop. Iterator has boolean value with the hasNext method. So no increment/decrement is required. Java for Loop Iterator
 
Java Next Iterator 
it should be casted for further use. Example of Java Next Iterator import... Iteratoris used by the set, List Interface and its subclasses. Iterator...[] = { 11, 22, 33, 44, 55, 66, 77, 88, 99 }; ArrayList list = new ArrayList
 
Iterator Java Order
Java Order Iterator Example import java.util.ArrayList; import.... The iterator() method of the List Interface gives elements in propersequence...(); Iterator setit = set.iterator(); System.out.println("List elemenys
 
Iterator Java Sample
() Java Sample Iterator Example import java.util.ArrayList; import... Java SampleIterator interface makes the traversing of the elements easy... sample { public static void main(String[] args) { List list = new ArrayList
 
Iterator in java, Iterator Java Examples
The Iterator is an java interface, it can be used to iterate the java collection objects. In this Java iterator tutorial you will learn how to define of Java Iteratorinterface
 
Iterator Java Remove
remove()method removes the last element of the list. This method is used with both Iterator and listIterator. It is used with next() or previous() method. ExampleJava Remove Iterator import java.util.ArrayList; import
 
Iterator Java Size
in the collection. Java Size Iterator Example import java.util.*; public class size { public static void main(String[] args) { List list = new... The Java Iterator size() is the method of the collection Interface
 
Java Hasnext Iterator 
of false vale loop terminates. Java HasNext Iterator Example import... Java HasNextIterator is the method of the Iterator Interface. It returns...", "april", "may", "june" }; ArrayList list = new ArrayList(); for (String m
 
Iterator Java While 
The Java While loop Iterator is the top tested loop. It is in two forms while(), do while() While loop is mostly used with Iterator compared to for loop Java While Loop Iterator Example import java.util.ArrayList; import
 
Example of Hashset iterator method in java.
Example of Hashset iterator method in java. In this exmple of HashSet class,  you will see the use of iterator() method. It is used for traversing all element from HashSet. Code:  HashSetRemoveElement.java package
 
using list iterator create student details - JavaMail
using list iterator create student details  write a java program... in ascending order using iterator(list iterator)  Hi Friend, First... them into another list to print them. Here we are sending you a sample code
 
Java Collection iterator with example
Example of Java Collection Iterator import java.util.ArrayList; import... The JavaCollection Iterator is present at the highest level interface in the Collection framework. Iterator interface has methods for traversing
 
Java HashMap iterator and example
elements can be traversed by the IteratorExample of Java HashMap... JavaHashMap Iterator is an interface. It keeps the data in the key and value form. It is implemented by HashMap. hashMap doesnot have iterator method
 
Java Set iterator with example
sorted data. It uses iterator() method to traverse the data Example of Java SetIterator import java.util.*; public class setiterator { public static... Java Set Interface keeps the data without duplicate value. Its one subtype
 
Java Map iterator with example
() method to get the data in Set object form. Java Map Iterator with Example...Java Map Iterator is an interface. It keeps the data in the key and value form. It is implemented by HashMap, Tree Map. Map has no iterator method. So
 
Vector Iterator Java Example
growable array.Its size may increase or decrease. It has iterator() method.SoIterator interface can traverse all its elements. Java Vector Iterator withExample... : city) { v.add(s); } Iterator it = v.iterator(); for (; it.hasNext
 
Iterator tag example of struts2.2.1
Iterator tag example of struts2.2.1 In this tutorial, we will introduce you to about the iterator tag. Iterator tag is used to iterate over a value... property is of type ArrayList. Directory structure of iterator tag example
 
Java Hashmap Iterator 
Java HashMap Iterator is a collection class. It implements the Map interface. It keeps the data in the key and value form. Java HashMap has no iterator.... Set's all elements can be traversed by the IteratorJava Hashmap Iterator
 
Java Hashtable Iterator
be traversed by the IteratorJava Hashtable Iterator Example import... in the key and value form. Like hasmap, it has no iterator() method. Use the entrySet..."); hastab.put("e", "era"); Set s = hastab.entrySet(); Iterator
 
Iterator Java Loop
With iterator all three loops can be used. While, dowhile, and for loop is easy to use with iteratorExample Java Loop Iterator import... class loop { public static void main(String[] args) { List l = new ArrayList
 
Iterator Java Sort
of the list Collection. Example of Java Sort Iterator import...++) { list.add(country[i]); } Collections.sort(list); Iterator i... static void main(String[] args) { List list = new ArrayList(); String country
 
Java Set Iterator 
data. It uses iterator() method to traverse the data Java Set Iterator Exampleimport java.util.*; public class set1 { public static void main..."); s.add("car");Iterator it = s.iterator(); while (it.hasNext
 
Linked List Example
Linked List Example     ... many List operations. Lets discuss the example code. Description of program... LinkedListExample Linked List Example! Linked list data: 11 22 33 44 Linked
 
Java Previous Iterator
Java previous Iterator function is present in the listIterator Interface. ListIterator is special iterator for the list. previuos method allows to get... direction. JavaPrevious Iterate Example import java.util.ArrayList
 
Java Vector Iterator 
increase or decrease. It has iterator() method. So Iterator interface can traverse all its elements. Java Vector Iterator Example import java.util.Iterator... JavaVector Iterator is a Collection class. It has similar functionality
 
Iterator Java Reset
iterator interface doesn't have any reset method. In the listIterator the previous method can be used to rsest the listExample of Java Reset Iterator...) { char alphabet = 'a'; ArrayList list = new ArrayList(); while (alphabet
 
Example to show Iterator exception in java
Example to show Iterator exception in java       Here we are describing the use of using exception class in java .This tutorial describes the way to handle Iterator
 
Java ArrayList, Java Array List examples
the ArrayList in Java with the example code. SampleInterfaceImp.java import...TheJava ArrayList (java.util.ArrayList) is resizable implementation of the List interface. It has support for all the functions present in the List interface
 
Java ArrayList listIterator
of the given list. Using this reference all elements of the list can be iterated. It works similar to the iterator() method. Java Arraylist List Iterator Exampleimport java.util.*; public class List1 { public static void main
 
Iterate a List in Java
Iterate a List in Java In this tutorial I will show you how you can iterate a list in your Java program. In this tutorial we are creating a list of Java... to iterate a Listin Java In java a list object can be iterated in following
 
linked list
linked list  Hi i have a problem with linked list ! how and where i can use linked list? please give me some example.   Please visit...://www.roseindia.net/java/beginners/linked-list-demo.shtml
 
iterator display problem - Struts
ExampleIterator Tag Example...iterator display problem   in action class i store database data... iterator tag can i use id atribute or valuethat i not understand  Hi
 
linked list example problem - Java Beginners
linked list example problem  Q: Create your own linked list (do... of the list in a comma-separated sequence, in the following format: [elem0, elem1, elem2, â?¦, elemN] Test your linked list in a main method which
 
linked list example problem - Java Beginners
linked list example problem  Q: Create your own linked list (do... of the list in a comma-separated sequence, in the following format: [elem0, elem1, elem2, â?¦, elemN] Test your linked list in a main method which
 
Iterate java Arraylist
(). Example of Java Arraylist Iterate import java.util.*; public class... Iterator is an interface in the collection framework. ArrayList is a collection class and implements the List Inteface. All the elements
 
Converting java arrays into list
. asList() It converts the object array into the fixed sized list Example...[]={111,222,333,444};         List list=new ArrayList();         List list1=new ArrayList();         list=Arrays.asList(ar);         list1=Arrays.asList(ar1
 
Iterator Tag (Control Tags) Example
Iterator Tag (Control Tags) Example       In this section, we are going to describe the Iterator tag. Iterator...;Output of An Iterator Tag Example:  
 
Link List Example in Java
Link List Example in Java       In this example, we are going to show the use of java.util.LinkedList class. You will be creating an object of link list class and performing various
 
Array List Example in java
Array List Example in java       In this example we are going to show the use of java.util.ArrayList.... the size of the array that is used internally to store the list. ArrayList
 
How to Define Vector Iterator in Java Program
How to Define Vector Iterator in Java Program  Hi, I want to develop a small application where i want to define vector iterator in my Java Programming. Kindly Suggest any online reference for references. Thanks
 
array list example
array list example  Array list example   Hello Friend, Please visit the following links: Array List Example1 Array List Example2 Thanks