diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2016-05-05 10:04:17 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2016-05-05 10:17:55 +0000 |
commit | 0c4a4082286b3ea3c11ae37a149bfde78fff7ecc (patch) | |
tree | 58b2c1e7702ba79bdaddef79d14494d373b5ef70 /jurt/com/sun/star/lib | |
parent | 72e6a1365cb08986b542a5beb797634bca62d85b (diff) |
jurt: add missing modelines
So that it's harder to introduce tabs in those files.
Change-Id: Iccaf0095fd103c4a3da44afc38f1a9d23be9863f
Reviewed-on: https://gerrit.libreoffice.org/24673
Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Tested-by: Jenkins <ci@libreoffice.org>
Diffstat (limited to 'jurt/com/sun/star/lib')
37 files changed, 106 insertions, 0 deletions
diff --git a/jurt/com/sun/star/lib/connections/pipe/PipeConnection.java b/jurt/com/sun/star/lib/connections/pipe/PipeConnection.java index d589fa515c52..63baaaf2246c 100644 --- a/jurt/com/sun/star/lib/connections/pipe/PipeConnection.java +++ b/jurt/com/sun/star/lib/connections/pipe/PipeConnection.java @@ -1,3 +1,4 @@ +/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * @@ -206,3 +207,5 @@ public class PipeConnection implements XConnection, XConnectionBroadcaster { } } + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/jurt/com/sun/star/lib/connections/pipe/pipeAcceptor.java b/jurt/com/sun/star/lib/connections/pipe/pipeAcceptor.java index 58400b3b35c9..983eb32659c0 100644 --- a/jurt/com/sun/star/lib/connections/pipe/pipeAcceptor.java +++ b/jurt/com/sun/star/lib/connections/pipe/pipeAcceptor.java @@ -1,3 +1,4 @@ +/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * @@ -118,3 +119,5 @@ public final class pipeAcceptor implements XAcceptor { public void stopAccepting() { } } + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/jurt/com/sun/star/lib/connections/pipe/pipeConnector.java b/jurt/com/sun/star/lib/connections/pipe/pipeConnector.java index 875e0f2ecd3d..fb59aa505a77 100644 --- a/jurt/com/sun/star/lib/connections/pipe/pipeConnector.java +++ b/jurt/com/sun/star/lib/connections/pipe/pipeConnector.java @@ -1,3 +1,4 @@ +/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * @@ -115,3 +116,5 @@ public final class pipeConnector implements XConnector { private boolean bConnected = false; } + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/jurt/com/sun/star/lib/connections/socket/ConnectionDescriptor.java b/jurt/com/sun/star/lib/connections/socket/ConnectionDescriptor.java index 4cd8e433c056..5a88d41baf00 100644 --- a/jurt/com/sun/star/lib/connections/socket/ConnectionDescriptor.java +++ b/jurt/com/sun/star/lib/connections/socket/ConnectionDescriptor.java @@ -1,3 +1,4 @@ +/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * @@ -93,3 +94,5 @@ final class ConnectionDescriptor { private int backlog = 50; private Boolean tcpNoDelay = null; } + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/jurt/com/sun/star/lib/connections/socket/SocketConnection.java b/jurt/com/sun/star/lib/connections/socket/SocketConnection.java index 4bef73b5590a..a906496f2c75 100644 --- a/jurt/com/sun/star/lib/connections/socket/SocketConnection.java +++ b/jurt/com/sun/star/lib/connections/socket/SocketConnection.java @@ -1,3 +1,4 @@ +/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * @@ -231,3 +232,4 @@ public class SocketConnection implements XConnection, XConnectionBroadcaster { } +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/jurt/com/sun/star/lib/connections/socket/socketAcceptor.java b/jurt/com/sun/star/lib/connections/socket/socketAcceptor.java index f9b375a78c76..9fd8001262aa 100644 --- a/jurt/com/sun/star/lib/connections/socket/socketAcceptor.java +++ b/jurt/com/sun/star/lib/connections/socket/socketAcceptor.java @@ -1,3 +1,4 @@ +/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * @@ -191,3 +192,5 @@ public final class socketAcceptor implements XAcceptor { private String acceptingDescription; private Boolean tcpNoDelay; } + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/jurt/com/sun/star/lib/connections/socket/socketConnector.java b/jurt/com/sun/star/lib/connections/socket/socketConnector.java index c169b59a6aeb..4ce67ce01fa3 100644 --- a/jurt/com/sun/star/lib/connections/socket/socketConnector.java +++ b/jurt/com/sun/star/lib/connections/socket/socketConnector.java @@ -1,3 +1,4 @@ +/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * @@ -161,3 +162,5 @@ public final class socketConnector implements XConnector { private boolean connected = false; } + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/jurt/com/sun/star/lib/uno/Proxy.java b/jurt/com/sun/star/lib/uno/Proxy.java index 86d2daccc3e2..7d3612758fc5 100644 --- a/jurt/com/sun/star/lib/uno/Proxy.java +++ b/jurt/com/sun/star/lib/uno/Proxy.java @@ -1,3 +1,4 @@ +/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * @@ -29,3 +30,5 @@ package com.sun.star.lib.uno; */ public interface Proxy { } + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/jurt/com/sun/star/lib/uno/bridges/java_remote/BridgedObject.java b/jurt/com/sun/star/lib/uno/bridges/java_remote/BridgedObject.java index 639e9f6532fd..0a724f059382 100644 --- a/jurt/com/sun/star/lib/uno/bridges/java_remote/BridgedObject.java +++ b/jurt/com/sun/star/lib/uno/bridges/java_remote/BridgedObject.java @@ -1,3 +1,4 @@ +/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * @@ -38,3 +39,5 @@ public final class BridgedObject { private BridgedObject() {} // do not instantiate } + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/jurt/com/sun/star/lib/uno/bridges/java_remote/ProxyFactory.java b/jurt/com/sun/star/lib/uno/bridges/java_remote/ProxyFactory.java index f7876acb7dec..1b3848983554 100644 --- a/jurt/com/sun/star/lib/uno/bridges/java_remote/ProxyFactory.java +++ b/jurt/com/sun/star/lib/uno/bridges/java_remote/ProxyFactory.java @@ -1,3 +1,4 @@ +/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * @@ -193,3 +194,5 @@ final class ProxyFactory { private final AsynchronousFinalizer asynchronousFinalizer = new AsynchronousFinalizer(); } + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/jurt/com/sun/star/lib/uno/bridges/java_remote/RequestHandler.java b/jurt/com/sun/star/lib/uno/bridges/java_remote/RequestHandler.java index cf7e6b5a11d4..d5246bf26c21 100644 --- a/jurt/com/sun/star/lib/uno/bridges/java_remote/RequestHandler.java +++ b/jurt/com/sun/star/lib/uno/bridges/java_remote/RequestHandler.java @@ -1,3 +1,4 @@ +/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * @@ -30,3 +31,5 @@ interface RequestHandler { Object sendRequest(String oid, Type type, String operation, Object[] args) throws Throwable; } + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/jurt/com/sun/star/lib/uno/bridges/java_remote/XConnectionInputStream_Adapter.java b/jurt/com/sun/star/lib/uno/bridges/java_remote/XConnectionInputStream_Adapter.java index c09b7366f1c5..8d660e88cacd 100644 --- a/jurt/com/sun/star/lib/uno/bridges/java_remote/XConnectionInputStream_Adapter.java +++ b/jurt/com/sun/star/lib/uno/bridges/java_remote/XConnectionInputStream_Adapter.java @@ -1,3 +1,4 @@ +/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * @@ -72,3 +73,4 @@ class XConnectionInputStream_Adapter extends InputStream { } } +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/jurt/com/sun/star/lib/uno/bridges/java_remote/XConnectionOutputStream_Adapter.java b/jurt/com/sun/star/lib/uno/bridges/java_remote/XConnectionOutputStream_Adapter.java index 7db36affb2c2..ac198f8fdd77 100644 --- a/jurt/com/sun/star/lib/uno/bridges/java_remote/XConnectionOutputStream_Adapter.java +++ b/jurt/com/sun/star/lib/uno/bridges/java_remote/XConnectionOutputStream_Adapter.java @@ -1,3 +1,4 @@ +/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * @@ -85,3 +86,4 @@ class XConnectionOutputStream_Adapter extends OutputStream { } } +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/jurt/com/sun/star/lib/uno/bridges/java_remote/java_remote_bridge.java b/jurt/com/sun/star/lib/uno/bridges/java_remote/java_remote_bridge.java index f7f487a83bd0..56fc0b4c905e 100644 --- a/jurt/com/sun/star/lib/uno/bridges/java_remote/java_remote_bridge.java +++ b/jurt/com/sun/star/lib/uno/bridges/java_remote/java_remote_bridge.java @@ -1,3 +1,4 @@ +/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * @@ -694,3 +695,5 @@ public class java_remote_bridge // Access to disposeListeners must be synchronized on <CODE>this</CODE>: private final ArrayList<DisposeListener> disposeListeners = new ArrayList<DisposeListener>(); } + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/jurt/com/sun/star/lib/uno/environments/java/java_environment.java b/jurt/com/sun/star/lib/uno/environments/java/java_environment.java index 654b9ad51158..6e6a35a8a905 100644 --- a/jurt/com/sun/star/lib/uno/environments/java/java_environment.java +++ b/jurt/com/sun/star/lib/uno/environments/java/java_environment.java @@ -1,3 +1,4 @@ +/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * @@ -307,3 +308,5 @@ public final class java_environment implements IEnvironment { private final Object context; private final Registry proxies = new Registry(); } + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/jurt/com/sun/star/lib/uno/environments/remote/IProtocol.java b/jurt/com/sun/star/lib/uno/environments/remote/IProtocol.java index f736142e0b20..c2ecbf9a09c2 100644 --- a/jurt/com/sun/star/lib/uno/environments/remote/IProtocol.java +++ b/jurt/com/sun/star/lib/uno/environments/remote/IProtocol.java @@ -1,3 +1,4 @@ +/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * @@ -88,3 +89,5 @@ public interface IProtocol { void writeReply(boolean exception, ThreadId tid, Object result) throws IOException; } + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/jurt/com/sun/star/lib/uno/environments/remote/IReceiver.java b/jurt/com/sun/star/lib/uno/environments/remote/IReceiver.java index c0b06c5a0dea..e39ae3d4d50c 100644 --- a/jurt/com/sun/star/lib/uno/environments/remote/IReceiver.java +++ b/jurt/com/sun/star/lib/uno/environments/remote/IReceiver.java @@ -1,3 +1,4 @@ +/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * @@ -35,3 +36,5 @@ public interface IReceiver { */ void sendReply(boolean exception, ThreadId threadId, Object result); } + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/jurt/com/sun/star/lib/uno/environments/remote/IThreadPool.java b/jurt/com/sun/star/lib/uno/environments/remote/IThreadPool.java index 597313efaaeb..1de31ad04c4c 100644 --- a/jurt/com/sun/star/lib/uno/environments/remote/IThreadPool.java +++ b/jurt/com/sun/star/lib/uno/environments/remote/IThreadPool.java @@ -1,3 +1,4 @@ +/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * @@ -111,3 +112,4 @@ public interface IThreadPool { void destroy(); } +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/jurt/com/sun/star/lib/uno/environments/remote/JavaThreadPool.java b/jurt/com/sun/star/lib/uno/environments/remote/JavaThreadPool.java index 3373c9236603..332306be0e3d 100644 --- a/jurt/com/sun/star/lib/uno/environments/remote/JavaThreadPool.java +++ b/jurt/com/sun/star/lib/uno/environments/remote/JavaThreadPool.java @@ -1,3 +1,4 @@ +/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * @@ -119,3 +120,5 @@ public class JavaThreadPool implements IThreadPool { public void destroy() { } } + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/jurt/com/sun/star/lib/uno/environments/remote/JavaThreadPoolFactory.java b/jurt/com/sun/star/lib/uno/environments/remote/JavaThreadPoolFactory.java index 9422742e1dc0..181a3e17e40a 100644 --- a/jurt/com/sun/star/lib/uno/environments/remote/JavaThreadPoolFactory.java +++ b/jurt/com/sun/star/lib/uno/environments/remote/JavaThreadPoolFactory.java @@ -1,3 +1,4 @@ +/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * @@ -82,3 +83,5 @@ final class JavaThreadPoolFactory { private static final WeakHashMap<Thread, ThreadId> threadIdMap = new WeakHashMap<Thread, ThreadId>(); private final HashMap<ThreadId, JobQueue> jobQueues = new HashMap<ThreadId, JobQueue>(); } + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/jurt/com/sun/star/lib/uno/environments/remote/Job.java b/jurt/com/sun/star/lib/uno/environments/remote/Job.java index a9cd28d5c0df..9dc20521fff7 100644 --- a/jurt/com/sun/star/lib/uno/environments/remote/Job.java +++ b/jurt/com/sun/star/lib/uno/environments/remote/Job.java @@ -1,3 +1,4 @@ +/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * @@ -161,3 +162,5 @@ public class Job { return e; } } + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/jurt/com/sun/star/lib/uno/environments/remote/JobQueue.java b/jurt/com/sun/star/lib/uno/environments/remote/JobQueue.java index 57dc5facb00b..a4dc753a8e41 100644 --- a/jurt/com/sun/star/lib/uno/environments/remote/JobQueue.java +++ b/jurt/com/sun/star/lib/uno/environments/remote/JobQueue.java @@ -1,3 +1,4 @@ +/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * @@ -377,3 +378,4 @@ public class JobQueue { } } +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/jurt/com/sun/star/lib/uno/environments/remote/Message.java b/jurt/com/sun/star/lib/uno/environments/remote/Message.java index e0d0774a1397..4a6921b080f2 100644 --- a/jurt/com/sun/star/lib/uno/environments/remote/Message.java +++ b/jurt/com/sun/star/lib/uno/environments/remote/Message.java @@ -1,3 +1,4 @@ +/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * @@ -184,3 +185,5 @@ public class Message { private final Object result; private final Object[] arguments; } + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/jurt/com/sun/star/lib/uno/environments/remote/NativeThreadPool.java b/jurt/com/sun/star/lib/uno/environments/remote/NativeThreadPool.java index 31e7855e98d4..f77bbb466d64 100644 --- a/jurt/com/sun/star/lib/uno/environments/remote/NativeThreadPool.java +++ b/jurt/com/sun/star/lib/uno/environments/remote/NativeThreadPool.java @@ -1,3 +1,4 @@ +/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * @@ -89,3 +90,5 @@ final class NativeThreadPool implements IThreadPool { private final long pool; private volatile Throwable dispose; } + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/jurt/com/sun/star/lib/uno/environments/remote/ThreadId.java b/jurt/com/sun/star/lib/uno/environments/remote/ThreadId.java index 24d1572f866c..535d72782b68 100644 --- a/jurt/com/sun/star/lib/uno/environments/remote/ThreadId.java +++ b/jurt/com/sun/star/lib/uno/environments/remote/ThreadId.java @@ -1,3 +1,4 @@ +/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * @@ -107,3 +108,5 @@ public final class ThreadId { private final byte[] id; private int hash = 0; } + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/jurt/com/sun/star/lib/uno/environments/remote/ThreadPoolManager.java b/jurt/com/sun/star/lib/uno/environments/remote/ThreadPoolManager.java index 9718264be379..2014f51674d6 100644 --- a/jurt/com/sun/star/lib/uno/environments/remote/ThreadPoolManager.java +++ b/jurt/com/sun/star/lib/uno/environments/remote/ThreadPoolManager.java @@ -1,3 +1,4 @@ +/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * @@ -69,3 +70,5 @@ public final class ThreadPoolManager { private ThreadPoolManager() {} // do not instantiate } + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/jurt/com/sun/star/lib/uno/environments/remote/remote_environment.java b/jurt/com/sun/star/lib/uno/environments/remote/remote_environment.java index b8d8d58de283..09259c8cb0f5 100644 --- a/jurt/com/sun/star/lib/uno/environments/remote/remote_environment.java +++ b/jurt/com/sun/star/lib/uno/environments/remote/remote_environment.java @@ -1,3 +1,4 @@ +/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * @@ -61,3 +62,5 @@ public final class remote_environment implements IEnvironment { private final Object context; } + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/jurt/com/sun/star/lib/uno/protocols/urp/Cache.java b/jurt/com/sun/star/lib/uno/protocols/urp/Cache.java index 544a06406648..26c2d449d617 100644 --- a/jurt/com/sun/star/lib/uno/protocols/urp/Cache.java +++ b/jurt/com/sun/star/lib/uno/protocols/urp/Cache.java @@ -1,3 +1,4 @@ +/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * @@ -109,3 +110,5 @@ final class Cache { private Entry first = null; private Entry last = null; } + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/jurt/com/sun/star/lib/uno/protocols/urp/Marshal.java b/jurt/com/sun/star/lib/uno/protocols/urp/Marshal.java index c226e3a4068a..b7425d80f590 100644 --- a/jurt/com/sun/star/lib/uno/protocols/urp/Marshal.java +++ b/jurt/com/sun/star/lib/uno/protocols/urp/Marshal.java @@ -1,3 +1,4 @@ +/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * @@ -350,3 +351,5 @@ final class Marshal { private final Cache threadIdCache; private final Cache typeCache; } + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/jurt/com/sun/star/lib/uno/protocols/urp/PendingRequests.java b/jurt/com/sun/star/lib/uno/protocols/urp/PendingRequests.java index 2492644a2e63..9dca51cbe885 100644 --- a/jurt/com/sun/star/lib/uno/protocols/urp/PendingRequests.java +++ b/jurt/com/sun/star/lib/uno/protocols/urp/PendingRequests.java @@ -1,3 +1,4 @@ +/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * @@ -59,3 +60,5 @@ final class PendingRequests { private final HashMap<ThreadId, Stack<Item>> map = new HashMap<ThreadId, Stack<Item>>(); // from ThreadId to Stack of Item } + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/jurt/com/sun/star/lib/uno/protocols/urp/Unmarshal.java b/jurt/com/sun/star/lib/uno/protocols/urp/Unmarshal.java index c8d14e9d0c35..2aa97d9242b6 100644 --- a/jurt/com/sun/star/lib/uno/protocols/urp/Unmarshal.java +++ b/jurt/com/sun/star/lib/uno/protocols/urp/Unmarshal.java @@ -1,3 +1,4 @@ +/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * @@ -472,3 +473,5 @@ final class Unmarshal { private final TypeDescription[] typeCache; private DataInputStream input; } + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/jurt/com/sun/star/lib/uno/protocols/urp/UrpMessage.java b/jurt/com/sun/star/lib/uno/protocols/urp/UrpMessage.java index c047a368e0fa..5b4f2fd1e55f 100644 --- a/jurt/com/sun/star/lib/uno/protocols/urp/UrpMessage.java +++ b/jurt/com/sun/star/lib/uno/protocols/urp/UrpMessage.java @@ -1,3 +1,4 @@ +/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * @@ -43,3 +44,5 @@ final class UrpMessage extends Message { private final boolean internal; } + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/jurt/com/sun/star/lib/uno/protocols/urp/urp.java b/jurt/com/sun/star/lib/uno/protocols/urp/urp.java index 3033481d17b1..7a87306a577e 100644 --- a/jurt/com/sun/star/lib/uno/protocols/urp/urp.java +++ b/jurt/com/sun/star/lib/uno/protocols/urp/urp.java @@ -1,3 +1,4 @@ +/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * @@ -759,3 +760,5 @@ public final class urp implements IProtocol { private final ArrayList<QueuedRelease> releaseQueue = new ArrayList<QueuedRelease>(); // of QueuedRelease } + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/jurt/com/sun/star/lib/util/AsynchronousFinalizer.java b/jurt/com/sun/star/lib/util/AsynchronousFinalizer.java index 908a53e8bc0c..0e7ecc41ba4d 100644 --- a/jurt/com/sun/star/lib/util/AsynchronousFinalizer.java +++ b/jurt/com/sun/star/lib/util/AsynchronousFinalizer.java @@ -1,3 +1,4 @@ +/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * @@ -110,3 +111,5 @@ public final class AsynchronousFinalizer { private final Thread thread; private boolean done = false; } + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/jurt/com/sun/star/lib/util/NativeLibraryLoader.java b/jurt/com/sun/star/lib/util/NativeLibraryLoader.java index d9486550855e..ab1eabb9cb67 100644 --- a/jurt/com/sun/star/lib/util/NativeLibraryLoader.java +++ b/jurt/com/sun/star/lib/util/NativeLibraryLoader.java @@ -1,3 +1,4 @@ +/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * @@ -127,3 +128,5 @@ public final class NativeLibraryLoader { private NativeLibraryLoader() {} // do not instantiate } + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/jurt/com/sun/star/lib/util/StringHelper.java b/jurt/com/sun/star/lib/util/StringHelper.java index cbe44e2e0442..de8b5253aaf4 100644 --- a/jurt/com/sun/star/lib/util/StringHelper.java +++ b/jurt/com/sun/star/lib/util/StringHelper.java @@ -1,3 +1,4 @@ +/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * @@ -41,3 +42,5 @@ public final class StringHelper return b.toString(); } } + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/jurt/com/sun/star/lib/util/UrlToFileMapper.java b/jurt/com/sun/star/lib/util/UrlToFileMapper.java index e8d183235855..131890f54f7c 100644 --- a/jurt/com/sun/star/lib/util/UrlToFileMapper.java +++ b/jurt/com/sun/star/lib/util/UrlToFileMapper.java @@ -1,3 +1,4 @@ +/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * @@ -89,3 +90,5 @@ public final class UrlToFileMapper { private UrlToFileMapper() {} } + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |