|
Last change
on this file since 4231 was 4231, checked in by stoecker, 14 years ago |
|
add signpost and metadata extractor code to repository directly
|
|
File size:
1.0 KB
|
| Line | |
|---|
| 1 | /*
|
|---|
| 2 | * This is public domain software - that is, you can do whatever you want
|
|---|
| 3 | * with it, and include it software that is licensed under the GNU or the
|
|---|
| 4 | * BSD license, or whatever other licence you choose, including proprietary
|
|---|
| 5 | * closed source licenses. I do ask that you leave this header in tact.
|
|---|
| 6 | *
|
|---|
| 7 | * If you make modifications to this code that you think would benefit the
|
|---|
| 8 | * wider community, please send me a copy and I'll post it on my site.
|
|---|
| 9 | *
|
|---|
| 10 | * If you make use of this code, I'd appreciate hearing about it.
|
|---|
| 11 | * drew@drewnoakes.com
|
|---|
| 12 | * Latest version of this software kept at
|
|---|
| 13 | * http://drewnoakes.com/
|
|---|
| 14 | */
|
|---|
| 15 | package com.drew.metadata.exif;
|
|---|
| 16 |
|
|---|
| 17 | import com.drew.metadata.Directory;
|
|---|
| 18 |
|
|---|
| 19 | import java.util.HashMap;
|
|---|
| 20 |
|
|---|
| 21 | /**
|
|---|
| 22 | * Describes tags specific to Kodak cameras.
|
|---|
| 23 | */
|
|---|
| 24 | public class KodakMakernoteDirectory extends Directory
|
|---|
| 25 | {
|
|---|
| 26 | protected static final HashMap _tagNameMap = new HashMap();
|
|---|
| 27 |
|
|---|
| 28 | public String getName()
|
|---|
| 29 | {
|
|---|
| 30 | return "Kodak Makernote";
|
|---|
| 31 | }
|
|---|
| 32 |
|
|---|
| 33 | protected HashMap getTagNameMap()
|
|---|
| 34 | {
|
|---|
| 35 | return _tagNameMap;
|
|---|
| 36 | }
|
|---|
| 37 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.