ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/java/org/apache/tomcat/buildutil/translate/BackportBase.java

Path
ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/java/org/apache/tomcat/buildutil/translate/BackportBase.java
Status
scanned
Type
file
Name
BackportBase.java
Extension
.java
Programming language
Java
Mime type
text/plain
File type
ASCII text, with CRLF line terminators
Tag

      
    
Rootfs path

      
    
Size
2508 (2.4 KB)
MD5
f2e4b7b1ff0c642a1189900647e32941
SHA1
df8ab7a24d78c69c3c3db792bc2d91bea711efe2
SHA256
508c2bfe8bb8578acbd3b3a04adfd081b23f988ff93230bec60eefe833c20c2f
SHA512

      
    
SHA1_git
9c942fd3d2be50be699daa17dd25788ba3e46276
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
BackportBase.java | 2.4 KB |

/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.tomcat.buildutil.translate; import java.io.File; import java.io.IOException; import java.util.HashMap; import java.util.Map; import java.util.Properties; /** * Base class providing common implementation for back-port utilities. */ public abstract class BackportBase { protected final Map<String,Properties> sourceTranslations = new HashMap<>(); protected final Map<String,Properties> targetTranslations = new HashMap<>(); protected final File targetRoot; protected final Properties sourceEnglish; protected final Properties targetEnglish; protected final File storageDir; protected BackportBase(String... args) throws IOException { if (args.length != 1) { throw new IllegalArgumentException("Missing back-port target"); } targetRoot = new File(args[0]); if (!targetRoot.isDirectory()) { throw new IllegalArgumentException("Back-port target not a directory"); } File sourceRoot = new File("."); for (String dir : Constants.SEARCH_DIRS) { File directory = new File(dir); Utils.processDirectory(sourceRoot, directory, sourceTranslations); } for (String dir : Constants.SEARCH_DIRS) { File directory = new File(targetRoot, dir); Utils.processDirectory(targetRoot, directory, targetTranslations); } sourceEnglish = sourceTranslations.get(""); targetEnglish = targetTranslations.get(""); storageDir = new File(targetRoot, Constants.STORAGE_DIR); } protected abstract void execute() throws IOException; }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
42.96
Copyrights

      
    
Holders

      
    
Authors

      
    
License detections License expression License expression SPDX
apache_2_0-4bde3f57-78aa-4201-96bf-531cba09e7de apache-2.0 Apache-2.0
URL Start line End line
http://www.apache.org/licenses/LICENSE-2.0 9 9