java/rozsirene-atributy/src/cz/frantovo/rozsireneatributy/gui/Model.java
branchv_0
changeset 29 8d42303538ed
parent 28 c2ffda907125
child 30 d511e4bf7d8f
     1.1 --- a/java/rozsirene-atributy/src/cz/frantovo/rozsireneatributy/gui/Model.java	Mon Dec 11 00:28:30 2023 +0100
     1.2 +++ b/java/rozsirene-atributy/src/cz/frantovo/rozsireneatributy/gui/Model.java	Mon Dec 11 00:49:59 2023 +0100
     1.3 @@ -40,9 +40,14 @@
     1.4   */
     1.5  public class Model implements TableModel {
     1.6  
     1.7 -	private static final Logger log = Logger.getLogger(Model.class.getSimpleName());
     1.8 -	private static final ResourceBundle překlady = ResourceBundle.getBundle(Atribut.class.getPackageName() + ".Překlady");
     1.9 -	private String[] sloupečky = {překlady.getString("tabulka.název"), překlady.getString("tabulka.hodnota")};
    1.10 +	private static final Logger log = Logger
    1.11 +		.getLogger(Model.class.getSimpleName());
    1.12 +	private static final ResourceBundle překlady = ResourceBundle
    1.13 +		.getBundle(Atribut.class.getPackageName() + ".Překlady");
    1.14 +	private String[] sloupečky = {
    1.15 +		překlady.getString("tabulka.název"),
    1.16 +		překlady.getString("tabulka.hodnota")
    1.17 +	};
    1.18  	private Set<TableModelListener> posluchače = new HashSet<>();
    1.19  	private UserDefinedFileAttributeView souborovýSystém;
    1.20  	private List<Atribut> atributy = new ArrayList<>();
    1.21 @@ -50,7 +55,8 @@
    1.22  	public Model(File soubor) throws IOException {
    1.23  		Path cesta = soubor.toPath();
    1.24  		FileSystemProvider posyktovatelFS = cesta.getFileSystem().provider();
    1.25 -		souborovýSystém = posyktovatelFS.getFileAttributeView(cesta, UserDefinedFileAttributeView.class);
    1.26 +		souborovýSystém = posyktovatelFS
    1.27 +			.getFileAttributeView(cesta, UserDefinedFileAttributeView.class);
    1.28  		načtiAtributy();
    1.29  	}
    1.30  
    1.31 @@ -114,7 +120,7 @@
    1.32  				}
    1.33  			}
    1.34  		} catch (IOException e) {
    1.35 -			log.log(Level.SEVERE, "Selhalo ukládání atributu na souborový systém", e);
    1.36 +			log.log(Level.SEVERE, "Selhalo ukládání atributu na FS", e);
    1.37  		}
    1.38  	}
    1.39  
    1.40 @@ -153,7 +159,8 @@
    1.41  		List<String> jménaAtributů = souborovýSystém.list();
    1.42  		atributy.clear();
    1.43  		for (String jménoAtributu : jménaAtributů) {
    1.44 -			ByteBuffer hodnotaAtributu = ByteBuffer.allocate(souborovýSystém.size(jménoAtributu));
    1.45 +			ByteBuffer hodnotaAtributu = ByteBuffer
    1.46 +				.allocate(souborovýSystém.size(jménoAtributu));
    1.47  			souborovýSystém.read(jménoAtributu, hodnotaAtributu);
    1.48  			atributy.add(new Atribut(jménoAtributu, hodnotaAtributu));
    1.49  		}