1 | /*
|
---|
2 | * Copyright 2002-2019 Drew Noakes and contributors
|
---|
3 | *
|
---|
4 | * Licensed under the Apache License, Version 2.0 (the "License");
|
---|
5 | * you may not use this file except in compliance with the License.
|
---|
6 | * You may obtain a copy of the License at
|
---|
7 | *
|
---|
8 | * http://www.apache.org/licenses/LICENSE-2.0
|
---|
9 | *
|
---|
10 | * Unless required by applicable law or agreed to in writing, software
|
---|
11 | * distributed under the License is distributed on an "AS IS" BASIS,
|
---|
12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
---|
13 | * See the License for the specific language governing permissions and
|
---|
14 | * limitations under the License.
|
---|
15 | *
|
---|
16 | * More information about this project is available at:
|
---|
17 | *
|
---|
18 | * https://drewnoakes.com/code/exif/
|
---|
19 | * https://github.com/drewnoakes/metadata-extractor
|
---|
20 | */
|
---|
21 | package com.drew.metadata;
|
---|
22 |
|
---|
23 | import com.drew.lang.annotations.NotNull;
|
---|
24 | import java.util.*;
|
---|
25 |
|
---|
26 | /**
|
---|
27 | * A directory to use for the reporting of errors. No values may be added to this directory, only warnings and errors.
|
---|
28 | *
|
---|
29 | * @author Drew Noakes https://drewnoakes.com
|
---|
30 | */
|
---|
31 |
|
---|
32 | public final class ErrorDirectory extends Directory
|
---|
33 | {
|
---|
34 |
|
---|
35 | public ErrorDirectory()
|
---|
36 | {}
|
---|
37 |
|
---|
38 | public ErrorDirectory(String error)
|
---|
39 | {
|
---|
40 | super.addError(error);
|
---|
41 | }
|
---|
42 |
|
---|
43 | @Override
|
---|
44 | @NotNull
|
---|
45 | public String getName()
|
---|
46 | {
|
---|
47 | return "Error";
|
---|
48 | }
|
---|
49 |
|
---|
50 | @Override
|
---|
51 | @NotNull
|
---|
52 | protected HashMap<Integer, String> getTagNameMap()
|
---|
53 | {
|
---|
54 | return new HashMap<Integer, String>();
|
---|
55 | }
|
---|
56 |
|
---|
57 | @Override
|
---|
58 | @NotNull
|
---|
59 | public String getTagName(int tagType)
|
---|
60 | {
|
---|
61 | return "";
|
---|
62 | }
|
---|
63 |
|
---|
64 | @Override
|
---|
65 | public boolean hasTagName(int tagType)
|
---|
66 | {
|
---|
67 | return false;
|
---|
68 | }
|
---|
69 |
|
---|
70 | @Override
|
---|
71 | public void setObject(int tagType, @NotNull Object value)
|
---|
72 | {
|
---|
73 | throw new UnsupportedOperationException(String.format("Cannot add value to %s.", ErrorDirectory.class.getName()));
|
---|
74 | }
|
---|
75 | }
|
---|